diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-09-30 08:35:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-30 08:35:29 +0800 |
commit | 5f2d0b932907fc3814a2245e1beacd8a47aa256c (patch) | |
tree | 9d357fe129544ede954a8fde1b3804b0d480ccc1 | |
parent | dbfdb52ea867ccd900575bd7dd52a71add7a7346 (diff) | |
download | rneovim-5f2d0b932907fc3814a2245e1beacd8a47aa256c.tar.gz rneovim-5f2d0b932907fc3814a2245e1beacd8a47aa256c.tar.bz2 rneovim-5f2d0b932907fc3814a2245e1beacd8a47aa256c.zip |
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.
-rw-r--r-- | test/old/testdir/test.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/old/testdir/test.sh b/test/old/testdir/test.sh index affdc308d1..6e7fa9db18 100644 --- 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.*" } |