diff options
author | Eric Fiselier <eric@efcs.ca> | 2019-03-21 00:04:31 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2019-03-21 00:04:31 +0000 |
commit | f1d87f8b4c430d72e7ab07e13508336a7841c3e6 (patch) | |
tree | 7c8a8cc30ee3f7518c734cf8204dd57fad8934bf /libcxx/test/std/input.output | |
parent | 49fc2655819fef5b733ee5fda5c10b434150ebf5 (diff) | |
download | bcm5719-llvm-f1d87f8b4c430d72e7ab07e13508336a7841c3e6.tar.gz bcm5719-llvm-f1d87f8b4c430d72e7ab07e13508336a7841c3e6.zip |
Allow disabling of filesystem library.
Summary: Filesystem doesn't work on Windows, so we need a mechanism to turn it off for the time being.
Reviewers: ldionne, serge-sans-paille, EricWF
Reviewed By: EricWF
Subscribers: mstorsjo, mgorny, christof, jdoerfert, libcxx-commits
Differential Revision: https://reviews.llvm.org/D59619
llvm-svn: 356633
Diffstat (limited to 'libcxx/test/std/input.output')
-rw-r--r-- | libcxx/test/std/input.output/filesystems/lit.local.cfg | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libcxx/test/std/input.output/filesystems/lit.local.cfg b/libcxx/test/std/input.output/filesystems/lit.local.cfg index 4a285ee2220..a5943340259 100644 --- a/libcxx/test/std/input.output/filesystems/lit.local.cfg +++ b/libcxx/test/std/input.output/filesystems/lit.local.cfg @@ -1,3 +1,6 @@ # Disable all of the filesystem tests if the dylib under test doesn't support them. if 'dylib-has-no-filesystem' in config.available_features: config.unsupported = True +if 'c++filesystem-disabled' in config.available_features: + config.unsupported = True + |