From 1c16301ab508c2951993096605927411c548c842 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-No=C3=ABl=20Grad?= Date: Tue, 15 Sep 2020 19:53:06 +0200 Subject: [PATCH] Disable test with sanitizers --- testsuite/python/CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/testsuite/python/CMakeLists.txt b/testsuite/python/CMakeLists.txt index b58ca546b43..c5eed777bf2 100644 --- a/testsuite/python/CMakeLists.txt +++ b/testsuite/python/CMakeLists.txt @@ -123,9 +123,8 @@ python_test(FILE widom_insertion.py MAX_NUM_PROC 1) python_test(FILE constant_pH.py MAX_NUM_PROC 4) python_test(FILE writevtf.py MAX_NUM_PROC 4) python_test(FILE lb_stokes_sphere.py MAX_NUM_PROC 4 LABELS gpu long) -if(NOT WITH_COVERAGE) +if(NOT WITH_COVERAGE AND NOT WITH_ASAN AND NOT WITH_UBSAN) python_test(FILE lb_pressure_tensor.py MAX_NUM_PROC 1 LABELS gpu long) - python_test(FILE wang_landau_reaction_ensemble.py MAX_NUM_PROC 1 LABELS long) endif() python_test(FILE ek_fluctuations.py MAX_NUM_PROC 1 LABELS gpu) python_test(FILE ek_charged_plate.py MAX_NUM_PROC 1 LABELS gpu) @@ -167,6 +166,9 @@ python_test(FILE analyze_distance.py MAX_NUM_PROC 1) python_test(FILE comfixed.py MAX_NUM_PROC 2) python_test(FILE rescale.py MAX_NUM_PROC 2) python_test(FILE accumulator.py MAX_NUM_PROC 4) +if(NOT WITH_COVERAGE) + python_test(FILE wang_landau_reaction_ensemble.py MAX_NUM_PROC 1 LABELS long) +endif() python_test(FILE array_properties.py MAX_NUM_PROC 4) python_test(FILE analyze_distribution.py MAX_NUM_PROC 1) python_test(FILE observable_profile.py MAX_NUM_PROC 4)