From 229e23b64687900359b531b3aeaae7fa90eaca86 Mon Sep 17 00:00:00 2001 From: Tomasz Konojacki Date: Fri, 15 Oct 2021 19:45:20 +0200 Subject: disable LeakSanitizer in GitHub Actions It randomly fails with a fatal error for no apparent reason. Fixes #19189 --- .github/workflows/testsuite.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index 724b81a754..809d93daff 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -560,8 +560,9 @@ jobs: ASAN_OPTIONS=detect_leaks=0 ./perl -Ilib -V ASAN_OPTIONS=detect_leaks=0 ./perl -Ilib -e 'use Config; print Config::config_sh' - name: Run Tests + # LeakSanitizer is disabled because it randomly crashes, see [gh #19189] run: | - PERL_DESTRUCT_LEVEL=2 TEST_JOBS=2 ./perl t/harness + ASAN_OPTIONS=detect_leaks=0 PERL_DESTRUCT_LEVEL=2 TEST_JOBS=2 ./perl t/harness # ____ _____ ____ _ _ _ _ _ ___ ____ ___ ____ _____ # | _ \| ____| _ \| | | | | | \ | |_ _/ ___/ _ \| _ \| ____| @@ -606,5 +607,6 @@ jobs: ASAN_OPTIONS=detect_leaks=0 ./perl -Ilib -V ASAN_OPTIONS=detect_leaks=0 ./perl -Ilib -e 'use Config; print Config::config_sh' - name: Run Tests + # LeakSanitizer is disabled because it randomly crashes, see [gh #19189] run: | - PERL_DESTRUCT_LEVEL=2 LC_ALL=en_US.UTF-8 PERL_UNICODE="" PERL_DESTRUCT_LEVEL=2 TEST_JOBS=2 ./perl t/harness + ASAN_OPTIONS=detect_leaks=0 PERL_DESTRUCT_LEVEL=2 LC_ALL=en_US.UTF-8 PERL_UNICODE="" TEST_JOBS=2 ./perl t/harness -- cgit v1.2.1