diff options
author | Jan Korous <jkorous@apple.com> | 2018-04-04 14:23:51 +0000 |
---|---|---|
committer | Jan Korous <jkorous@apple.com> | 2018-04-04 14:23:51 +0000 |
commit | 3abc515dc2c64b0d7812239df8f54dbf05bf8b85 (patch) | |
tree | 174e58c31a8677aea33c5b8f9ac79fd7dec7c285 /libcxx/test/std/experimental/filesystem | |
parent | c0c9ba7ee04a48a601762d9b1b109a90831b933b (diff) | |
download | bcm5719-llvm-3abc515dc2c64b0d7812239df8f54dbf05bf8b85.tar.gz bcm5719-llvm-3abc515dc2c64b0d7812239df8f54dbf05bf8b85.zip |
[libcxx][test] Fix fs::proximate tests on platforms where /net exists.
Following Eric's patch.
llvm-svn: 329199
Diffstat (limited to 'libcxx/test/std/experimental/filesystem')
-rw-r--r-- | libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.proximate/proximate.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.proximate/proximate.pass.cpp b/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.proximate/proximate.pass.cpp index d5d2043d7eb..dc89228a79f 100644 --- a/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.proximate/proximate.pass.cpp +++ b/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.proximate/proximate.pass.cpp @@ -87,7 +87,7 @@ TEST_CASE(basic_test) { {"a", "a", "."}, {"a/b", "a/b", "."}, {"a/b/c/", "a/b/c/", "."}, - {"//net/a/b", "//net/a/b", "."}, + {"//foo/a/b", "//foo/a/b", "."}, {"/a/d", "/a/b/c", "../../d"}, {"/a/b/c", "/a/d", "../b/c"}, {"a/b/c", "a", "b/c"}, |