[llvm] fac4857 - [llvm-exegesis] Disable tests requiring the subprocess executor

Aiden Grossman via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 3 13:18:54 PDT 2023


Author: Aiden Grossman
Date: 2023-07-03T13:18:38-07:00
New Revision: fac4857bc10b78b95822b5127c0c5a4b759aa462

URL: https://github.com/llvm/llvm-project/commit/fac4857bc10b78b95822b5127c0c5a4b759aa462
DIFF: https://github.com/llvm/llvm-project/commit/fac4857bc10b78b95822b5127c0c5a4b759aa462.diff

LOG: [llvm-exegesis] Disable tests requiring the subprocess executor

This patch temporarily disables tests that require the subprocess
executor as they are currently flaky on systems that are able to run
them such as clang-cmake-x86_64-avx512-linux. Once I have a fix for the
flakiness they will be reenabled.

Added: 
    

Modified: 
    llvm/test/tools/llvm-exegesis/lit.local.cfg

Removed: 
    


################################################################################
diff  --git a/llvm/test/tools/llvm-exegesis/lit.local.cfg b/llvm/test/tools/llvm-exegesis/lit.local.cfg
index 78c7d785d240c8..1cb43f539c292d 100644
--- a/llvm/test/tools/llvm-exegesis/lit.local.cfg
+++ b/llvm/test/tools/llvm-exegesis/lit.local.cfg
@@ -77,5 +77,7 @@ if can_execute_generated_snippets("x86_64"):
     ):
         config.available_features.add("exegesis-can-measure-latency-lbr")
 
-if can_execute_in_subprocess():
-    config.available_features.add("exegesis-can-execute-in-subprocess")
+# The subprocess tests are flaky on some of the builders that support them, so
+# they are disabled currently.
+#if can_execute_in_subprocess():
+#    config.available_features.add("exegesis-can-execute-in-subprocess")


        


More information about the llvm-commits mailing list