aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/bpf/prog_tests/exceptions.c
diff options
context:
space:
mode:
authorKumar Kartikeya Dwivedi <[email protected]>2023-09-18 15:52:31 +0000
committerAlexei Starovoitov <[email protected]>2023-09-19 09:07:36 +0000
commit4d84dcc739d5b253096f9e47957c5964709f5772 (patch)
tree1bc475121e772fd321cd0b1e44da3a508883211e /tools/testing/selftests/bpf/prog_tests/exceptions.c
parentMerge branch 'stmmac-devvm_stmmac_probe_config_dt-conversion' (diff)
downloadkernel-4d84dcc739d5b253096f9e47957c5964709f5772.tar.gz
kernel-4d84dcc739d5b253096f9e47957c5964709f5772.zip
selftests/bpf: Print log buffer for exceptions test only on failure
Alexei reported seeing log messages for some test cases even though we just wanted to match the error string from the verifier. Move the printing of the log buffer to a guarded condition so that we only print it when we fail to match on the expected string in the log buffer, preventing unneeded output when running the test. Reported-by: Alexei Starovoitov <[email protected]> Fixes: d2a93715bfb0 ("selftests/bpf: Add tests for BPF exceptions") Signed-off-by: Kumar Kartikeya Dwivedi <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Alexei Starovoitov <[email protected]>
Diffstat (limited to 'tools/testing/selftests/bpf/prog_tests/exceptions.c')
-rw-r--r--tools/testing/selftests/bpf/prog_tests/exceptions.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/testing/selftests/bpf/prog_tests/exceptions.c b/tools/testing/selftests/bpf/prog_tests/exceptions.c
index 5663e427dc00..516f4a13013c 100644
--- a/tools/testing/selftests/bpf/prog_tests/exceptions.c
+++ b/tools/testing/selftests/bpf/prog_tests/exceptions.c
@@ -103,9 +103,10 @@ static void test_exceptions_success(void)
goto done; \
} \
if (load_ret != 0) { \
- printf("%s\n", log_buf); \
- if (!ASSERT_OK_PTR(strstr(log_buf, msg), "strstr")) \
+ if (!ASSERT_OK_PTR(strstr(log_buf, msg), "strstr")) { \
+ printf("%s\n", log_buf); \
goto done; \
+ } \
} \
if (!load_ret && attach_err) { \
if (!ASSERT_ERR_PTR(link = bpf_program__attach(prog), "attach err")) \