summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2017-04-20 20:22:19 +0000
committerEric Fiselier <eric@efcs.ca>2017-04-20 20:22:19 +0000
commit6ca6874880b48e2ed87ffca8025b4d3e31bcba97 (patch)
treec113893023ee7609d79c9c2f0064ffb500a62aa5 /utils
parent5bf8bed95858fd84de813f27a011156fd9ae7898 (diff)
Fix comment and remove incorrect linker flags in test configuration
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@300881 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/libcxx/test/config.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/utils/libcxx/test/config.py b/utils/libcxx/test/config.py
index c9a3629f8..bd99e8ddd 100644
--- a/utils/libcxx/test/config.py
+++ b/utils/libcxx/test/config.py
@@ -414,7 +414,11 @@ class Configuration(object):
if self.is_windows:
self.config.available_features.add('windows')
if self.cxx_stdlib_under_test == 'libc++':
- # LIBCXX-WINDOWS-FIXME is a
+ # 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.
self.config.available_features.add('LIBCXX-WINDOWS-FIXME')
# Attempt to detect the glibc version by querying for __GLIBC__
@@ -482,8 +486,6 @@ class Configuration(object):
self.cxx.flags += ['-m32']
# Use verbose output for better errors
self.cxx.flags += ['-v']
- if self.is_windows:
- self.cxx.link_flags += ['-Wl,-v']
sysroot = self.get_lit_conf('sysroot')
if sysroot:
self.cxx.flags += ['--sysroot', sysroot]