From 63a2fdd77301ef0b0a2cc7ec2e90e6d0deadad2e Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Mon, 24 Oct 2022 14:06:23 -0500 Subject: [PATCH] Re-enable tests under ASAN/LSAN/UBSAN in GitHub CI With the previous workaround skipping `test_autosuggest_suggest_special()` when LSAN is enabled, the sanitizer seems to run to completion just fine. --- .github/workflows/main.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 87733a691..1cad004c8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -85,12 +85,9 @@ jobs: - name: make run: | make - # This is broken as of 2022-04-18, ASAN crashes on - # autosuggest_suggest_special for no discernable reason. - # Unable to reproduce locally. - # - name: make test - # run: | - # make test + - name: make test + run: | + make test ubuntu-threadsan: