[Lldb-commits] [lldb] r245848 - Add the correct decorator to TestCreateDuringInstructionStep

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Mon Aug 24 08:49:12 PDT 2015


Author: labath
Date: Mon Aug 24 10:49:12 2015
New Revision: 245848

URL: http://llvm.org/viewvc/llvm-project?rev=245848&view=rev
Log:
Add the correct decorator to TestCreateDuringInstructionStep

apparently, just placing the file under linux/ does not make the test linux specific. :)

Modified:
    lldb/trunk/test/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py

Modified: lldb/trunk/test/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py?rev=245848&r1=245847&r2=245848&view=diff
==============================================================================
--- lldb/trunk/test/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py (original)
+++ lldb/trunk/test/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py Mon Aug 24 10:49:12 2015
@@ -17,11 +17,7 @@ class CreateDuringInstructionStepTestCas
         # Call super's setUp().
         TestBase.setUp(self)
 
-    @dsym_test
-    def test_step_inst_with_dsym(self):
-        self.buildDsym(dictionary=self.getBuildFlags())
-        self.create_during_step_inst_test()
-
+    @skipUnlessPlatform(['linux'])
     @dwarf_test
     def test_step_inst_with_dwarf(self):
         self.buildDwarf(dictionary=self.getBuildFlags())




More information about the lldb-commits mailing list