From b22e6987b88aef021f228af2e0d810bf16964dcf Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Fri, 12 May 2017 01:49:32 +0000 Subject: [PATCH] Move tests for libc++ configurations into libcxx/ test subdirectory git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@302864 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../c.files/no.global.filesystem.namespace/fopen.fail.cpp | 2 ++ .../c.files/no.global.filesystem.namespace/rename.fail.cpp | 2 ++ .../c.files/no.global.filesystem.namespace/lit.local.cfg | 2 -- 3 files changed, 4 insertions(+), 2 deletions(-) rename test/{std => libcxx}/input.output/file.streams/c.files/no.global.filesystem.namespace/fopen.fail.cpp (89%) rename test/{std => libcxx}/input.output/file.streams/c.files/no.global.filesystem.namespace/rename.fail.cpp (89%) delete mode 100644 test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/lit.local.cfg diff --git a/test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/fopen.fail.cpp b/test/libcxx/input.output/file.streams/c.files/no.global.filesystem.namespace/fopen.fail.cpp similarity index 89% rename from test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/fopen.fail.cpp rename to test/libcxx/input.output/file.streams/c.files/no.global.filesystem.namespace/fopen.fail.cpp index 4d83296f0..31a37229b 100644 --- a/test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/fopen.fail.cpp +++ b/test/libcxx/input.output/file.streams/c.files/no.global.filesystem.namespace/fopen.fail.cpp @@ -7,6 +7,8 @@ // //===----------------------------------------------------------------------===// +// REQUIRES: libcpp-has-no-global-filesystem-namespace + #include int main() { diff --git a/test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/rename.fail.cpp b/test/libcxx/input.output/file.streams/c.files/no.global.filesystem.namespace/rename.fail.cpp similarity index 89% rename from test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/rename.fail.cpp rename to test/libcxx/input.output/file.streams/c.files/no.global.filesystem.namespace/rename.fail.cpp index deca9bf5b..248ab4d67 100644 --- a/test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/rename.fail.cpp +++ b/test/libcxx/input.output/file.streams/c.files/no.global.filesystem.namespace/rename.fail.cpp @@ -7,6 +7,8 @@ // //===----------------------------------------------------------------------===// +// REQUIRES: libcpp-has-no-global-filesystem-namespace + #include int main() { diff --git a/test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/lit.local.cfg b/test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/lit.local.cfg deleted file mode 100644 index 4ea670935..000000000 --- a/test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/lit.local.cfg +++ /dev/null @@ -1,2 +0,0 @@ -if 'libcpp-has-no-global-filesystem-namespace' not in config.available_features: - config.unsupported = True