[libcxx-commits] [libcxx] [libc++][CI] Reenables the module tests. (PR #85799)
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Mar 19 07:45:27 PDT 2024
https://github.com/mordante created https://github.com/llvm/llvm-project/pull/85799
These were disabled due to ODR violations with mixed versions of clang-tidy and the clang libraries. This issue was fixed in e19e8600cf743690e1a23fb8a2b0dfbe2dafe559.
This reverts commit 0bbada93a559b604797fe57978f3eca5e41edaeb.
>From 399bb3bdc4cde424b816b2d68ab96f3771951be6 Mon Sep 17 00:00:00 2001
From: Mark de Wever <koraq at xs4all.nl>
Date: Tue, 19 Mar 2024 15:42:46 +0100
Subject: [PATCH] [libc++][CI] Reenables the module tests.
These were disabled due to ODR violations with mixed versions of
clang-tidy and the clang libraries. This issue was fixed in
e19e8600cf743690e1a23fb8a2b0dfbe2dafe559.
This reverts commit 0bbada93a559b604797fe57978f3eca5e41edaeb.
---
libcxx/test/libcxx/module_std.gen.py | 5 -----
libcxx/test/libcxx/module_std_compat.gen.py | 5 -----
2 files changed, 10 deletions(-)
diff --git a/libcxx/test/libcxx/module_std.gen.py b/libcxx/test/libcxx/module_std.gen.py
index 5acaa837d37e0a..fc23985caf30de 100644
--- a/libcxx/test/libcxx/module_std.gen.py
+++ b/libcxx/test/libcxx/module_std.gen.py
@@ -16,11 +16,7 @@
# to be one monolitic test. Since the test doesn't take very long it's
# not a huge issue.
-# WARNING: Disabled at the bottom. Fix this test and remove the UNSUPPORTED line
-# TODO: Re-enable this test once we understand why it keeps timing out.
-
# RUN: %{python} %s %{libcxx-dir}/utils
-# END.
import sys
@@ -39,5 +35,4 @@
print("//--- module_std.sh.cpp")
-print('// UNSUPPORTED: clang')
generator.write_test("std")
diff --git a/libcxx/test/libcxx/module_std_compat.gen.py b/libcxx/test/libcxx/module_std_compat.gen.py
index a502276a1ccfc5..000aa299861220 100644
--- a/libcxx/test/libcxx/module_std_compat.gen.py
+++ b/libcxx/test/libcxx/module_std_compat.gen.py
@@ -16,11 +16,7 @@
# to be one monolitic test. Since the test doesn't take very long it's
# not a huge issue.
-# WARNING: Disabled at the bottom. Fix this test and remove the UNSUPPORTED line
-# TODO: Re-enable this test once we understand why it keeps timing out.
-
# RUN: %{python} %s %{libcxx-dir}/utils
-# END.
import sys
@@ -40,7 +36,6 @@
print("//--- module_std_compat.sh.cpp")
-print("// UNSUPPORTED: clang")
generator.write_test(
"std.compat",
module_c_headers,
More information about the libcxx-commits
mailing list