From c113c03c1392c9df1ba46b54fb07831e016f54bd Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Mon, 30 Sep 2019 17:40:08 +0200 Subject: [PATCH] run {A,UB}SAN again with GMP Fixup of 798d7dc61f0cad04972ddebd09c98136fbacb806 --- .ci/meta_builds.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/meta_builds.sh b/.ci/meta_builds.sh index de8f2e91..2ba99a9e 100755 --- a/.ci/meta_builds.sh +++ b/.ci/meta_builds.sh @@ -34,7 +34,7 @@ function run_gcc() { ASAN_OPTIONS=verbosity=1 ./test t ltm 1>test_std.txt 2> test_err.txt || exit 1 - if echo $2 | grep -q GMP ; then + if echo $* | grep -q GMP ; then echo echo "Run ASAN tests with GMP..." @@ -68,7 +68,7 @@ function run_clang() { echo "Run UBSAN tests with LTM..." UBSAN_OPTIONS=verbosity=1 ./test t ltm 1>test_std.txt 2> test_err.txt || exit 1 - if echo $2 | grep -q GMP ; then + if echo $* | grep -q GMP ; then echo echo "Run UBSAN tests with GMP..."