[Lldb-commits] [lldb] r246726 - Skip the rest of the Objective C tests on Windows.

Zachary Turner via lldb-commits lldb-commits at lists.llvm.org
Wed Sep 2 15:41:28 PDT 2015


Author: zturner
Date: Wed Sep  2 17:41:28 2015
New Revision: 246726

URL: http://llvm.org/viewvc/llvm-project?rev=246726&view=rev
Log:
Skip the rest of the Objective C tests on Windows.

Modified:
    lldb/trunk/test/lang/objc/modules-auto-import/TestModulesAutoImport.py
    lldb/trunk/test/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py
    lldb/trunk/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py

Modified: lldb/trunk/test/lang/objc/modules-auto-import/TestModulesAutoImport.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/objc/modules-auto-import/TestModulesAutoImport.py?rev=246726&r1=246725&r2=246726&view=diff
==============================================================================
--- lldb/trunk/test/lang/objc/modules-auto-import/TestModulesAutoImport.py (original)
+++ lldb/trunk/test/lang/objc/modules-auto-import/TestModulesAutoImport.py Wed Sep  2 17:41:28 2015
@@ -24,6 +24,7 @@ class ObjCModulesAutoImportTestCase(Test
     @dwarf_test
     @skipIfFreeBSD
     @skipIfLinux
+    @skipIfWindows
     @expectedFailureDarwin # clang: error: unknown argument: '-gmodules'
     def test_expr_with_dwarf(self):
         self.buildDwarf()

Modified: lldb/trunk/test/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py?rev=246726&r1=246725&r2=246726&view=diff
==============================================================================
--- lldb/trunk/test/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py (original)
+++ lldb/trunk/test/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py Wed Sep  2 17:41:28 2015
@@ -23,6 +23,7 @@ class ModulesInlineFunctionsTestCase(Tes
     @dwarf_test
     @skipIfFreeBSD
     @skipIfLinux
+    @skipIfWindows
     def test_expr_with_dwarf(self):
         self.buildDwarf()
         self.expr()

Modified: lldb/trunk/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py?rev=246726&r1=246725&r2=246726&view=diff
==============================================================================
--- lldb/trunk/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py (original)
+++ lldb/trunk/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py Wed Sep  2 17:41:28 2015
@@ -24,6 +24,7 @@ class ObjCNewSyntaxTestCase(TestBase):
     @dwarf_test
     @skipIfFreeBSD
     @skipIfLinux
+    @skipIfWindows
     @expectedFailureDarwin # expr -- @((char*)"Hello world" + 6) cannot box a string value because NSString has not been declared
     def test_expr_with_dwarf(self):
         self.buildDwarf()




More information about the lldb-commits mailing list