summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2017-04-26 19:24:31 +0000
committerDimitry Andric <dim@FreeBSD.org>2017-04-26 19:24:31 +0000
commit2fa809d9eabddd820af54059faa8362dd50b51de (patch)
treed24999651df3a7a5d330d20573335db9a8afcc89 /utils
parent1c3313bd0215c89fb38710a1ea0762ccf32e859c (diff)
downloadsrc-test2-2fa809d9eabddd820af54059faa8362dd50b51de.tar.gz
src-test2-2fa809d9eabddd820af54059faa8362dd50b51de.zip
Notes
Diffstat (limited to 'utils')
-rw-r--r--utils/libcxx/test/config.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/libcxx/test/config.py b/utils/libcxx/test/config.py
index bd99e8ddd978..f839a3a0985e 100644
--- a/utils/libcxx/test/config.py
+++ b/utils/libcxx/test/config.py
@@ -311,10 +311,10 @@ class Configuration(object):
# NOTE: We do not test for the -verify flag directly because
# -verify will always exit with non-zero on an empty file.
self.use_clang_verify = self.cxx.isVerifySupported()
- if self.use_clang_verify:
- self.config.available_features.add('verify-support')
self.lit_config.note(
"inferred use_clang_verify as: %r" % self.use_clang_verify)
+ if self.use_clang_verify:
+ self.config.available_features.add('verify-support')
def configure_use_thread_safety(self):
'''If set, run clang with -verify on failing tests.'''
@@ -418,7 +418,7 @@ class Configuration(object):
# 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.
+ # using this feature. (Also see llvm.org/PR32730)
self.config.available_features.add('LIBCXX-WINDOWS-FIXME')
# Attempt to detect the glibc version by querying for __GLIBC__