commit 5f2d0b932907fc3814a2245e1beacd8a47aa256c
parent dbfdb52ea867ccd900575bd7dd52a71add7a7346
Author: zeertzjq <zeertzjq@outlook.com>
Date: Sat, 30 Sep 2023 08:35:29 +0800
test(old): don't check for $CLANG_SANITIZER (#25432)
Functional tests don't check for an environment variable before printing
ASAN logs, so oldtests shouldn't either.
Diffstat:
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/test/old/testdir/test.sh b/test/old/testdir/test.sh
@@ -85,7 +85,5 @@ valgrind_check() {
}
check_sanitizer() {
- if test -n "${CLANG_SANITIZER}"; then
- check_logs "${1}" "*san.*" | cat
- fi
+ check_logs "${1}" "*san.*"
}