Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lldb/test/API/lang/cpp/stl/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
CXX_SOURCES := main.cpp

USE_SYSTEM_STDLIB := 1

include Makefile.rules
4 changes: 1 addition & 3 deletions lldb/test/API/lang/cpp/stl/TestStdCXXDisassembly.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,7 @@ def test_stdcxx_disasm(self):
# At this point, lib_stdcxx is the full path to the stdc++ library and
# module is the corresponding SBModule.

self.expect(
lib_stdcxx, "Libraray StdC++ is located", exe=False, substrs=["lib"]
)
self.expect(lib_stdcxx, "Library StdC++ is located", exe=False, substrs=["lib"])

self.runCmd("image dump symtab '%s'" % lib_stdcxx)
raw_output = self.res.GetOutput()
Expand Down
Loading