Home
last modified time | relevance | path

Searched refs:fs_windows_root (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/Utility/
H A DFileSpecTest.cpp55 FileSpec fs_windows_root("F:\\", FileSpec::Style::windows); in TEST() local
56 EXPECT_STREQ("F:\\", fs_windows_root.GetCString()); in TEST()
57 EXPECT_STREQ("F:", fs_windows_root.GetDirectory().GetCString()); in TEST()
108 FileSpec fs_windows_root("F:\\", FileSpec::Style::windows); in TEST() local
109 fs_windows_root.AppendPathComponent("bar"); in TEST()
110 EXPECT_STREQ("F:\\bar", fs_windows_root.GetCString()); in TEST()
113 EXPECT_STREQ("bar", fs_windows_root.GetFilename().GetCString()); in TEST()
140 FileSpec fs_windows_root("bar", FileSpec::Style::windows); in TEST() local
141 fs_windows_root.PrependPathComponent("F:\\"); in TEST()
142 EXPECT_STREQ("F:\\bar", fs_windows_root.GetCString()); in TEST()