diff options
author | Eric Fiselier <eric@efcs.ca> | 2017-05-12 01:49:32 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2017-05-12 01:49:32 +0000 |
commit | 873f8d2ebeb60908cbc5c54d1c8045e0a5552b35 (patch) | |
tree | 0908f17ea592576489d79a8ab56b24dcb68fcf3f /libcxx/test/std/input.output | |
parent | a92fd0bebb9ed9175f1fb235f3ee1775bdf61cce (diff) | |
download | bcm5719-llvm-873f8d2ebeb60908cbc5c54d1c8045e0a5552b35.tar.gz bcm5719-llvm-873f8d2ebeb60908cbc5c54d1c8045e0a5552b35.zip |
Move tests for libc++ configurations into libcxx/ test subdirectory
llvm-svn: 302864
Diffstat (limited to 'libcxx/test/std/input.output')
3 files changed, 0 insertions, 32 deletions
diff --git a/libcxx/test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/fopen.fail.cpp b/libcxx/test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/fopen.fail.cpp deleted file mode 100644 index 4d83296f086..00000000000 --- a/libcxx/test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/fopen.fail.cpp +++ /dev/null @@ -1,15 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is dual licensed under the MIT and the University of Illinois Open -// Source Licenses. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include <cstdio> - -int main() { - // fopen is not available on systems without a global filesystem namespace. - std::fopen("", ""); -} diff --git a/libcxx/test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/lit.local.cfg b/libcxx/test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/lit.local.cfg deleted file mode 100644 index 4ea67093559..00000000000 --- a/libcxx/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 diff --git a/libcxx/test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/rename.fail.cpp b/libcxx/test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/rename.fail.cpp deleted file mode 100644 index deca9bf5b55..00000000000 --- a/libcxx/test/std/input.output/file.streams/c.files/no.global.filesystem.namespace/rename.fail.cpp +++ /dev/null @@ -1,15 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is dual licensed under the MIT and the University of Illinois Open -// Source Licenses. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include <cstdio> - -int main() { - // rename is not available on systems without a global filesystem namespace. - std::rename("", ""); -} |