[libcxx-commits] [PATCH] D123145: [libcxx] [test] Stop defining LIBCXX-WINDOWS-FIXME
Martin Storsjö via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Apr 6 12:55:39 PDT 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG7594e236795f: [libcxx] [test] Stop defining LIBCXX-WINDOWS-FIXME (authored by mstorsjo).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D123145/new/
https://reviews.llvm.org/D123145
Files:
libcxx/test/configs/llvm-libc++-mingw.cfg.in
libcxx/test/configs/llvm-libc++-shared-clangcl.cfg.in
libcxx/test/configs/llvm-libc++-static-clangcl.cfg.in
libcxx/utils/libcxx/test/config.py
Index: libcxx/utils/libcxx/test/config.py
===================================================================
--- libcxx/utils/libcxx/test/config.py
+++ libcxx/utils/libcxx/test/config.py
@@ -133,7 +133,6 @@
self.configure_env()
self.configure_coverage()
self.configure_substitutions()
- self.configure_features()
libcxx.test.newconfig.configure(
libcxx.test.params.DEFAULT_PARAMETERS,
@@ -222,16 +221,6 @@
else:
self.libcxx_obj_root = self.project_obj_root
- def configure_features(self):
- if self.target_info.is_windows():
- if self.cxx_stdlib_under_test == 'libc++':
- # LIBCXX-WINDOWS-FIXME is the feature name used to XFAIL the
- # initial Windows failures until they can be properly diagnosed
- # and fixed. This allows easier detection of new test failures
- # and regressions. Note: New failures should not be suppressed
- # using this feature. (Also see llvm.org/PR32730)
- self.config.available_features.add('LIBCXX-WINDOWS-FIXME')
-
def configure_compile_flags(self):
self.configure_default_compile_flags()
# Configure extra flags
Index: libcxx/test/configs/llvm-libc++-static-clangcl.cfg.in
===================================================================
--- libcxx/test/configs/llvm-libc++-static-clangcl.cfg.in
+++ libcxx/test/configs/llvm-libc++-static-clangcl.cfg.in
@@ -14,13 +14,6 @@
'%{executor} --execdir %T --env PATH=%{lib} -- '
))
-# LIBCXX-WINDOWS-FIXME is the feature name used to XFAIL the
-# initial Windows failures until they can be properly diagnosed
-# and fixed. This allows easier detection of new test failures
-# and regressions. Note: New failures should not be suppressed
-# using this feature. (Also see llvm.org/PR32730)
-config.available_features.add('LIBCXX-WINDOWS-FIXME')
-
import os, site
site.addsitedir(os.path.join('@LIBCXX_SOURCE_DIR@', 'utils'))
import libcxx.test.params, libcxx.test.newconfig
Index: libcxx/test/configs/llvm-libc++-shared-clangcl.cfg.in
===================================================================
--- libcxx/test/configs/llvm-libc++-shared-clangcl.cfg.in
+++ libcxx/test/configs/llvm-libc++-shared-clangcl.cfg.in
@@ -14,13 +14,6 @@
'%{executor} --execdir %T --env PATH=%{lib} -- '
))
-# LIBCXX-WINDOWS-FIXME is the feature name used to XFAIL the
-# initial Windows failures until they can be properly diagnosed
-# and fixed. This allows easier detection of new test failures
-# and regressions. Note: New failures should not be suppressed
-# using this feature. (Also see llvm.org/PR32730)
-config.available_features.add('LIBCXX-WINDOWS-FIXME')
-
import os, site
site.addsitedir(os.path.join('@LIBCXX_SOURCE_DIR@', 'utils'))
import libcxx.test.params, libcxx.test.newconfig
Index: libcxx/test/configs/llvm-libc++-mingw.cfg.in
===================================================================
--- libcxx/test/configs/llvm-libc++-mingw.cfg.in
+++ libcxx/test/configs/llvm-libc++-mingw.cfg.in
@@ -14,13 +14,6 @@
'%{executor} --execdir %T --env PATH=%{lib} -- '
))
-# LIBCXX-WINDOWS-FIXME is the feature name used to XFAIL the
-# initial Windows failures until they can be properly diagnosed
-# and fixed. This allows easier detection of new test failures
-# and regressions. Note: New failures should not be suppressed
-# using this feature. (Also see llvm.org/PR32730)
-config.available_features.add('LIBCXX-WINDOWS-FIXME')
-
import os, site
site.addsitedir(os.path.join('@LIBCXX_SOURCE_DIR@', 'utils'))
import libcxx.test.params, libcxx.test.newconfig
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D123145.420986.patch
Type: text/x-patch
Size: 3691 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220406/f1bfced7/attachment.bin>
More information about the libcxx-commits
mailing list