[Lldb-commits] [lldb] r250896 - Clean up more .dwo files after the tests run

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 21 05:56:37 PDT 2015


Author: labath
Date: Wed Oct 21 07:56:37 2015
New Revision: 250896

URL: http://llvm.org/viewvc/llvm-project?rev=250896&view=rev
Log:
Clean up more .dwo files after the tests run

Modified:
    lldb/trunk/test/lang/cpp/incomplete-types/Makefile
    lldb/trunk/test/make/Makefile.rules
    lldb/trunk/test/types/AbstractBase.py
    lldb/trunk/test/types/TestRecursiveTypes.py

Modified: lldb/trunk/test/lang/cpp/incomplete-types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/incomplete-types/Makefile?rev=250896&r1=250895&r2=250896&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/incomplete-types/Makefile (original)
+++ lldb/trunk/test/lang/cpp/incomplete-types/Makefile Wed Oct 21 07:56:37 2015
@@ -30,6 +30,6 @@ length_nolimit.o: length.cpp
 a.o: a.cpp
 	$(CXX) $(CFLAGS_NO_DEBUG) -c a.cpp -o a.o
 
-clean: OBJECTS += limit nolimit length_limit.o length_nolimit.o
+clean: OBJECTS += limit nolimit length_limit.o length_nolimit.o length_limit.dwo length_nolimit.dwo
 
 include $(LEVEL)/Makefile.rules

Modified: lldb/trunk/test/make/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/make/Makefile.rules?rev=250896&r1=250895&r2=250896&view=diff
==============================================================================
--- lldb/trunk/test/make/Makefile.rules (original)
+++ lldb/trunk/test/make/Makefile.rules Wed Oct 21 07:56:37 2015
@@ -489,7 +489,7 @@ endif
 # files by replacing all .c files with .d.
 #----------------------------------------------------------------------
 PREREQS := $(OBJECTS:.o=.d)
-DWOS := $(OBJECTS:.o=.dwo)
+DWOS := $(OBJECTS:.o=.dwo) $(ARCHIVE_OBJECTS:.o=.dwo)
 ifneq "$(DYLIB_NAME)" ""
 	DYLIB_PREREQS := $(DYLIB_OBJECTS:.o=.d)
 	DYLIB_DWOS := $(DYLIB_OBJECTS:.o=.dwo)

Modified: lldb/trunk/test/types/AbstractBase.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/types/AbstractBase.py?rev=250896&r1=250895&r2=250896&view=diff
==============================================================================
--- lldb/trunk/test/types/AbstractBase.py (original)
+++ lldb/trunk/test/types/AbstractBase.py Wed Oct 21 07:56:37 2015
@@ -46,9 +46,6 @@ class GenericTester(TestBase):
     # functions.  There are also three optional keyword arguments of interest, #
     # as follows:                                                              #
     #                                                                          #
-    # dsym -> build for dSYM (defaulted to True)                               #
-    #         True: build dSYM file                                            #
-    #         False: build DWARF map                                           #
     # bc -> blockCaptured (defaulted to False)                                 #
     #         True: testing vars of various basic types from inside a block    #
     #         False: testing vars of various basic types from a function       #

Modified: lldb/trunk/test/types/TestRecursiveTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/types/TestRecursiveTypes.py?rev=250896&r1=250895&r2=250896&view=diff
==============================================================================
--- lldb/trunk/test/types/TestRecursiveTypes.py (original)
+++ lldb/trunk/test/types/TestRecursiveTypes.py Wed Oct 21 07:56:37 2015
@@ -33,7 +33,7 @@ class RecursiveTypesTestCase(TestBase):
 
     def test_recursive_type_2(self):
         """Test that recursive structs are displayed correctly."""
-        self.build(dictionary=self.d1)
+        self.build(dictionary=self.d2)
         self.setTearDownCleanup(dictionary=self.d2)
         self.print_struct()
 




More information about the lldb-commits mailing list