diff options
author | Zachary Turner <zturner@google.com> | 2015-09-02 22:41:28 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-09-02 22:41:28 +0000 |
commit | a5bebcc5ea0ed903e07a1a1a8dbfe9481f71df6d (patch) | |
tree | ea6de80b414d556bb3c141869575edab255f0bdc | |
parent | 77377408f8358d930f3c43011c839cba9c674f65 (diff) | |
download | bcm5719-llvm-a5bebcc5ea0ed903e07a1a1a8dbfe9481f71df6d.tar.gz bcm5719-llvm-a5bebcc5ea0ed903e07a1a1a8dbfe9481f71df6d.zip |
Skip the rest of the Objective C tests on Windows.
llvm-svn: 246726
3 files changed, 3 insertions, 0 deletions
diff --git a/lldb/test/lang/objc/modules-auto-import/TestModulesAutoImport.py b/lldb/test/lang/objc/modules-auto-import/TestModulesAutoImport.py index b8f4493823c..b875dfc7860 100644 --- a/lldb/test/lang/objc/modules-auto-import/TestModulesAutoImport.py +++ b/lldb/test/lang/objc/modules-auto-import/TestModulesAutoImport.py @@ -24,6 +24,7 @@ class ObjCModulesAutoImportTestCase(TestBase): @dwarf_test @skipIfFreeBSD @skipIfLinux + @skipIfWindows @expectedFailureDarwin # clang: error: unknown argument: '-gmodules' def test_expr_with_dwarf(self): self.buildDwarf() diff --git a/lldb/test/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py b/lldb/test/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py index a9c7ce65067..e74cd82a651 100644 --- a/lldb/test/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py +++ b/lldb/test/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py @@ -23,6 +23,7 @@ class ModulesInlineFunctionsTestCase(TestBase): @dwarf_test @skipIfFreeBSD @skipIfLinux + @skipIfWindows def test_expr_with_dwarf(self): self.buildDwarf() self.expr() diff --git a/lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py b/lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py index a5d342ff1f6..89762764839 100644 --- a/lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py +++ b/lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py @@ -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() |