forked from OSchip/llvm-project
[lldb/Symbol] Fix typo in SymbolFilePDBTests (NFC)
Signed-off-by: Med Ismail Bennani <medismail.bennani@gmail.com>
This commit is contained in:
parent
30fcdf0b19
commit
d5069dace7
|
@ -340,7 +340,7 @@ TEST_F(SymbolFilePDBTests, TestLineTablesMatchSpecific) {
|
||||||
// Then test with line 9, and verify that only line 9 entries are added.
|
// Then test with line 9, and verify that only line 9 entries are added.
|
||||||
location_spec = SourceLocationSpec(
|
location_spec = SourceLocationSpec(
|
||||||
source_file, /*line=*/9, /*column=*/llvm::None, /*check_inlines=*/true);
|
source_file, /*line=*/9, /*column=*/llvm::None, /*check_inlines=*/true);
|
||||||
count = symfile->ResolveSymbolContext(source_file, 9, true, scope, sc_list);
|
count = symfile->ResolveSymbolContext(location_spec, scope, sc_list);
|
||||||
EXPECT_EQ(1u, count);
|
EXPECT_EQ(1u, count);
|
||||||
EXPECT_TRUE(sc_list.GetContextAtIndex(0, sc));
|
EXPECT_TRUE(sc_list.GetContextAtIndex(0, sc));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue