From cd6298637f14ae50100383cf80d10ff12d3ce569 Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez-Fernandez Date: Jul 03 2023 10:05:25 +0000 Subject: libbpf-tools: cleanup logs Signed-off-by: Carlos Rodriguez-Fernandez --- diff --git a/tests/p_libbpf-tools/libbpf-tools_tests.sh b/tests/p_libbpf-tools/libbpf-tools_tests.sh index 9b82eda..629404e 100755 --- a/tests/p_libbpf-tools/libbpf-tools_tests.sh +++ b/tests/p_libbpf-tools/libbpf-tools_tests.sh @@ -107,22 +107,22 @@ tracing_tests=( one_failed=0 for cmd in "${version_tests[@]}"; do - t_Log "Running lib-tools test: ${cmd}" + t_Log "Running $0 - libbpf-tools test: ${cmd}" if ! eval "${cmd}" > /dev/null 2>&1; then - t_Log "FAIL: lib-tools test: ${cmd}" + t_Log "FAIL: $0: libbpf-tools test: ${cmd}" one_failed=1 else - t_Log "PASS: lib-tools test: ${cmd}" + t_Log "PASS: $0: libbpf-tools test: ${cmd}" fi done for cmd in "${tracing_tests[@]}"; do - t_Log "Running $0 - lib-tools test: ${cmd}" + t_Log "Running $0 - libbpf-tools test: ${cmd}" if ! eval "${cmd}" > /dev/null 2>&1; then - t_Log "$0: FAIL: lib-tools test: ${cmd}" + t_Log "FAIL: $0: libbpf-tools test: ${cmd}" one_failed=1 else - t_Log "$0: PASS: lib-tools test: ${cmd}" + t_Log "PASS: $0: libbpf-tools test: ${cmd}" fi done