Skip to content

Commit

Permalink
Fix test case breakages caused by lexically_relative change
Browse files Browse the repository at this point in the history
llvm-svn: 349888
  • Loading branch information
EricWF committed Dec 21, 2018
1 parent 8c0c8e1 commit aae39bf
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -75,12 +75,12 @@ TEST_CASE(basic_test) {
{"a", parent_cwd, "fs.op.proximate/a"},
{"/", "a", dot_dot_to_root / ".."},
{"/", "a/b", dot_dot_to_root / "../.."},
{"/", "a/b/", dot_dot_to_root / "../../.."},
{"/", "a/b/", dot_dot_to_root / "../.."},
{"a", "/", relative_cwd / "a"},
{"a/b", "/", relative_cwd / "a/b"},
{"a", "/net", ".." / relative_cwd / "a"},
{"//foo/", "//foo", "/foo/"},
{"//foo", "//foo/", ".."},
{"//foo/", "//foo", "."},
{"//foo", "//foo/", "."},
{"//foo", "//foo", "."},
{"//foo/", "//foo/", "."},
{"//base", "a", dot_dot_to_root / "../base"},
Expand Down

0 comments on commit aae39bf

Please sign in to comment.