diff options
author | Louis Dionne <ldionne@apple.com> | 2019-03-20 14:34:00 +0000 |
---|---|---|
committer | Louis Dionne <ldionne@apple.com> | 2019-03-20 14:34:00 +0000 |
commit | b38c08ac02460b5555b9d6c8468db4d58eb4ef9c (patch) | |
tree | 7220b919d3f303d8d9947e5c1e97d9031144a8f7 /libcxx/test/std/input.output/filesystems | |
parent | 7bb785cbc3b78a0a7aab8ee6e859625a85498e4d (diff) | |
download | bcm5719-llvm-b38c08ac02460b5555b9d6c8468db4d58eb4ef9c.tar.gz bcm5719-llvm-b38c08ac02460b5555b9d6c8468db4d58eb4ef9c.zip |
[libc++] Mark <filesystem> tests as failing when the dylib doesn't support filesystem
This fixes CI for back-deployment testers on platforms that don't have
<filesystem> support in the dylib.
This is effectively half of https://reviews.llvm.org/D59224. The other
half requires fixes in Clang.
llvm-svn: 356558
Diffstat (limited to 'libcxx/test/std/input.output/filesystems')
-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 new file mode 100644 index 00000000000..4a285ee2220 --- /dev/null +++ b/libcxx/test/std/input.output/filesystems/lit.local.cfg @@ -0,0 +1,3 @@ +# 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 |