From 0243c3ffb644e61848b82f24f5e4a7324669d76e Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Thu, 17 Sep 2020 21:02:57 +0200 Subject: CI/test-debian-asan: run address sanitizer tests both with and without asm --- .gitlab-ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8bb88a3..ba9f763 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -464,9 +464,12 @@ test-debian-asan: -Dtestdata_tests=true -Dlogging=false -Db_sanitize=address - -Denable_asm=false - ninja -C build - - cd build && time meson test -v --setup=sanitizer + - cd build + - exit_code=0 + - time meson test -v --setup=sanitizer --test-args "--cpumask 0" || exit_code=$((exit_code + $?)) + - time meson test -v --setup=sanitizer --test-args "--cpumask 0xff" || exit_code=$((exit_code + $?)) + - if [ $exit_code -ne 0 ]; then exit $exit_code; fi test-debian-msan: extends: -- cgit v1.2.3