forked from OSchip/llvm-project
[libcxx] [test] Stop defining LIBCXX-WINDOWS-FIXME
There are no such markings left - all of them have been fixed or analyzed. This closes llvm.org/PR32730 (github issue #32077). Differential Revision: https://reviews.llvm.org/D123145
This commit is contained in:
parent
9edee89b91
commit
7594e23679
|
@ -14,13 +14,6 @@ config.substitutions.append(('%{exec}',
|
|||
'%{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
|
||||
|
|
|
@ -14,13 +14,6 @@ config.substitutions.append(('%{exec}',
|
|||
'%{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
|
||||
|
|
|
@ -14,13 +14,6 @@ config.substitutions.append(('%{exec}',
|
|||
'%{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
|
||||
|
|
|
@ -133,7 +133,6 @@ class Configuration(object):
|
|||
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 @@ class Configuration(object):
|
|||
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
|
||||
|
|
Loading…
Reference in New Issue