[Lldb-commits] [lldb] r375170 - Adapt Windows test to API change.

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Thu Oct 17 13:51:55 PDT 2019


Author: adrian
Date: Thu Oct 17 13:51:55 2019
New Revision: 375170

URL: http://llvm.org/viewvc/llvm-project?rev=375170&view=rev
Log:
Adapt Windows test to API change.

Modified:
    lldb/trunk/unittests/SymbolFile/PDB/SymbolFilePDBTests.cpp

Modified: lldb/trunk/unittests/SymbolFile/PDB/SymbolFilePDBTests.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/unittests/SymbolFile/PDB/SymbolFilePDBTests.cpp?rev=375170&r1=375169&r2=375170&view=diff
==============================================================================
--- lldb/trunk/unittests/SymbolFile/PDB/SymbolFilePDBTests.cpp (original)
+++ lldb/trunk/unittests/SymbolFile/PDB/SymbolFilePDBTests.cpp Thu Oct 17 13:51:55 2019
@@ -603,9 +603,8 @@ TEST_F(SymbolFilePDBTests, TestFindSymbo
   lldb::ModuleSP module = std::make_shared<Module>(fspec, aspec);
 
   SymbolContextList sc_list;
-  EXPECT_EQ(1u,
-            module->FindSymbolsWithNameAndType(ConstString("?foo@@YAHH at Z"),
-                                               lldb::eSymbolTypeAny, sc_list));
+  module->FindSymbolsWithNameAndType(ConstString("?foo@@YAHH at Z"),
+                                     lldb::eSymbolTypeAny, sc_list);
   EXPECT_EQ(1u, sc_list.GetSize());
 
   SymbolContext sc;




More information about the lldb-commits mailing list