From: Jonas Devlieghere Date: Wed, 11 Dec 2019 17:50:00 +0000 (-0800) Subject: [VFS] Extend virtual working directory test X-Git-Tag: llvmorg-11-init~2411 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f2f774997357cc6690d8a2446140d0c4df83e828;p=platform%2Fupstream%2Fllvm.git [VFS] Extend virtual working directory test Extend the virtual working directory test with a few edge cases that are not currently tested. --- diff --git a/llvm/unittests/Support/VirtualFileSystemTest.cpp b/llvm/unittests/Support/VirtualFileSystemTest.cpp index 69e9ce8..87547b2 100644 --- a/llvm/unittests/Support/VirtualFileSystemTest.cpp +++ b/llvm/unittests/Support/VirtualFileSystemTest.cpp @@ -2089,6 +2089,16 @@ TEST_F(VFSFromYAMLTest, WorkingDirectoryFallthrough) { " 'external-contents': '//root/foo/a'\n" " }\n" " ]\n" + "},\n" + "{\n" + " 'type': 'directory',\n" + " 'name': '//root/bar/baz',\n" + " 'contents': [ {\n" + " 'type': 'file',\n" + " 'name': 'a',\n" + " 'external-contents': '//root/foo/a'\n" + " }\n" + " ]\n" "}\n" "]\n" "}", @@ -2125,6 +2135,21 @@ TEST_F(VFSFromYAMLTest, WorkingDirectoryFallthrough) { Status = FS->status("c"); ASSERT_FALSE(Status.getError()); EXPECT_TRUE(Status->exists()); + + Status = FS->status("./bar/baz/a"); + ASSERT_FALSE(Status.getError()); + EXPECT_TRUE(Status->exists()); + + EC = FS->setCurrentWorkingDirectory("//root/bar"); + ASSERT_FALSE(EC); + + Status = FS->status("./baz/a"); + ASSERT_FALSE(Status.getError()); + EXPECT_TRUE(Status->exists()); + + Status = FS->status("../bar/baz/a"); + ASSERT_FALSE(Status.getError()); + EXPECT_TRUE(Status->exists()); } TEST_F(VFSFromYAMLTest, WorkingDirectoryFallthroughInvalid) {