From 3abc515dc2c64b0d7812239df8f54dbf05bf8b85 Mon Sep 17 00:00:00 2001 From: Jan Korous Date: Wed, 4 Apr 2018 14:23:51 +0000 Subject: [PATCH] [libcxx][test] Fix fs::proximate tests on platforms where /net exists. Following Eric's patch. llvm-svn: 329199 --- .../filesystem/fs.op.funcs/fs.op.proximate/proximate.pass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 d5d2043d7eba..dc89228a79fe 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"},