Summary: Previously, we'd run some experimental tests even when enable_experimental=False was used with lit. Reviewers: EricWF Subscribers: christof, jkorous, dexonsmith, libcxx-commits, mclow.lists Differential Revision: https://reviews.llvm.org/D55834 llvm-svn: 354725
4 lines
164 B
INI
4 lines
164 B
INI
# Disable all of the experimental tests if the correct feature is not available.
|
|
if 'c++experimental' not in config.available_features:
|
|
config.unsupported = True
|