aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-09-30 08:35:29 +0800
committerGitHub <noreply@github.com>2023-09-30 08:35:29 +0800
commit5f2d0b932907fc3814a2245e1beacd8a47aa256c (patch)
tree9d357fe129544ede954a8fde1b3804b0d480ccc1
parentdbfdb52ea867ccd900575bd7dd52a71add7a7346 (diff)
downloadrneovim-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.sh4
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.*"
}