Commit 73be0cb7 authored by Louis Dionne's avatar Louis Dionne
Browse files

[libcxx] Make sure all experimental tests are disabled when enable_experimental=False

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
parent 75afc010
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
# Disable all of the experimental tests if the correct feature is not available.
if 'c++experimental' not in config.available_features:
  config.unsupported = True
+0 −1
Original line number Diff line number Diff line
@@ -6,7 +6,6 @@
//
//===----------------------------------------------------------------------===//

// REQUIRES: c++experimental
// UNSUPPORTED: c++98, c++03

// <experimental/memory_resource>
+0 −1
Original line number Diff line number Diff line
@@ -6,7 +6,6 @@
//
//===----------------------------------------------------------------------===//

// REQUIRES: c++experimental
// UNSUPPORTED: c++98, c++03

// <experimental/memory_resource>
+3 −0
Original line number Diff line number Diff line
# Disable all of the experimental tests if the correct feature is not available.
if 'c++experimental' not in config.available_features:
  config.unsupported = True
+0 −1
Original line number Diff line number Diff line
@@ -6,7 +6,6 @@
//
//===----------------------------------------------------------------------===//

// REQUIRES: c++experimental
// UNSUPPORTED: c++98, c++03

// <experimental/memory_resource>
Loading