[llvm] 9c63e5b - [Orc][examples] Temporarily disable tests for the C API due to failures on sanitizer bots
Stefan Gränitz via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 6 02:33:30 PDT 2021
Author: Stefan Gränitz
Date: 2021-08-06T11:33:01+02:00
New Revision: 9c63e5b415d1d62116fec160c6ac1f3c00933ed9
URL: https://github.com/llvm/llvm-project/commit/9c63e5b415d1d62116fec160c6ac1f3c00933ed9
DIFF: https://github.com/llvm/llvm-project/commit/9c63e5b415d1d62116fec160c6ac1f3c00933ed9.diff
LOG: [Orc][examples] Temporarily disable tests for the C API due to failures on sanitizer bots
These tests were added while the OrcV2Example tests had been disabled:
https://reviews.llvm.org/rGe5d8cfb2f134fcf0235ec1a35eec875a9cd36b21
Failures on sanitizer bots:
https://green.lab.llvm.org/green/job/clang-stage2-cmake-RgSan/7992/testReport/
Added:
Modified:
llvm/test/Examples/lit.local.cfg
Removed:
################################################################################
diff --git a/llvm/test/Examples/lit.local.cfg b/llvm/test/Examples/lit.local.cfg
index a9f3860333603..f75ffaf0314ec 100644
--- a/llvm/test/Examples/lit.local.cfg
+++ b/llvm/test/Examples/lit.local.cfg
@@ -3,3 +3,13 @@ if not config.build_examples or sys.platform in ['win32']:
# Test discovery should ignore subdirectories that contain test inputs.
config.excludes = ['Inputs']
+
+# Tests for the C API are disabled temporarily due to failures on sanitizer bots:
+# https://green.lab.llvm.org/green/job/clang-stage2-cmake-RgSan/7992/testReport/
+config.excludes += [
+ 'orcv2-cbindings-add-object-file.test',
+ 'orcv2-cbindings-basic-usage.test',
+ 'orcv2-cbindings-lazy.test',
+ 'orcv2-cbindings-reflect-process-symbols.test',
+ 'orcv2-cbindings-removable-code.test',
+]
More information about the llvm-commits
mailing list