[libcxx-commits] [libcxx] 9d5fdad - [libc++] Disable module_std and module_std_compat tests

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Fri Mar 8 08:05:29 PST 2024


Author: Louis Dionne
Date: 2024-03-08T11:05:19-05:00
New Revision: 9d5fdad7e5002dbe087bbf0a78ffe9423b6aab56

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

LOG: [libc++] Disable module_std and module_std_compat tests

Those have been crippling the CI for over a week now. This is the only
solution I see until we gain a better understanding of why they fail.
Otherwise all other patches are blocked on these spurious failures in
the stage1 of the CI.

Added: 
    

Modified: 
    libcxx/test/libcxx/module_std.gen.py
    libcxx/test/libcxx/module_std_compat.gen.py

Removed: 
    


################################################################################
diff  --git a/libcxx/test/libcxx/module_std.gen.py b/libcxx/test/libcxx/module_std.gen.py
index fc23985caf30de..932af742640c3f 100644
--- a/libcxx/test/libcxx/module_std.gen.py
+++ b/libcxx/test/libcxx/module_std.gen.py
@@ -18,6 +18,9 @@
 
 # RUN: %{python} %s %{libcxx-dir}/utils
 
+# TODO: Re-enable this test once we understand why it keeps timing out.
+# UNSUPPORTED: clang
+
 import sys
 
 sys.path.append(sys.argv[1])

diff  --git a/libcxx/test/libcxx/module_std_compat.gen.py b/libcxx/test/libcxx/module_std_compat.gen.py
index 000aa299861220..d29f490ab135d2 100644
--- a/libcxx/test/libcxx/module_std_compat.gen.py
+++ b/libcxx/test/libcxx/module_std_compat.gen.py
@@ -18,6 +18,9 @@
 
 # RUN: %{python} %s %{libcxx-dir}/utils
 
+# TODO: Re-enable this test once we understand why it keeps timing out.
+# UNSUPPORTED: clang
+
 import sys
 
 sys.path.append(sys.argv[1])


        


More information about the libcxx-commits mailing list