From 788de3ad2491468a8f1fad204d8a6e9fd5dde7d7 Mon Sep 17 00:00:00 2001 From: Yutetsu TAKATSUKASA Date: Sun, 20 Dec 2020 01:12:15 +0900 Subject: [PATCH] CI: Enable address sanitizer for vlt tests. (#2715) --- ci/ci-script.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/ci-script.bash b/ci/ci-script.bash index 1bf1347c6..c75401b93 100755 --- a/ci/ci-script.bash +++ b/ci/ci-script.bash @@ -82,10 +82,10 @@ elif [ "$CI_BUILD_STAGE_NAME" = "test" ]; then # Run the specified test case $TESTS in dist-vlt-0) - "$MAKE" -C test_regress SCENARIOS="--dist --vlt" DRIVER_HASHSET=--hashset=0/2 + "$MAKE" -C test_regress SCENARIOS="--dist --vlt --sanitize" DRIVER_HASHSET=--hashset=0/2 ;; dist-vlt-1) - "$MAKE" -C test_regress SCENARIOS="--dist --vlt" DRIVER_HASHSET=--hashset=1/2 + "$MAKE" -C test_regress SCENARIOS="--dist --vlt --sanitize" DRIVER_HASHSET=--hashset=1/2 ;; vltmt-0) "$MAKE" -C test_regress SCENARIOS=--vltmt DRIVER_HASHSET=--hashset=0/2