diff options
Diffstat (limited to 'lldb/unittests/Host/SymbolsTest.cpp')
-rw-r--r-- | lldb/unittests/Host/SymbolsTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/unittests/Host/SymbolsTest.cpp b/lldb/unittests/Host/SymbolsTest.cpp index d3073310e3e..253ce39e31b 100644 --- a/lldb/unittests/Host/SymbolsTest.cpp +++ b/lldb/unittests/Host/SymbolsTest.cpp @@ -26,7 +26,8 @@ TEST(SymbolsTest, ModuleSpec module_spec; // using a GUID here because the symbol file shouldn't actually exist on disk module_spec.GetSymbolFileSpec().SetFile( - "4A524676-B24B-4F4E-968A-551D465EBAF1.so", false); + "4A524676-B24B-4F4E-968A-551D465EBAF1.so", false, + FileSpec::Style::native); FileSpec symbol_file_spec = Symbols::LocateExecutableSymbolFile(module_spec); EXPECT_TRUE(symbol_file_spec.GetFilename().IsEmpty()); } |