diff options
author | Stephane Sezer <sas@cd80.net> | 2017-11-07 00:14:40 +0000 |
---|---|---|
committer | Stephane Sezer <sas@cd80.net> | 2017-11-07 00:14:40 +0000 |
commit | d20106b5ecd36edecf1a1109d3c50682dea849a7 (patch) | |
tree | 433c9b38b45c36499b1bd4d6329a5496b1f7e408 /lldb/packages/Python/lldbsuite/test/lang/c/shared_lib | |
parent | d5e2e8393b3b96e45dd5d5930e08bc43d36fe891 (diff) | |
download | bcm5719-llvm-d20106b5ecd36edecf1a1109d3c50682dea849a7.tar.gz bcm5719-llvm-d20106b5ecd36edecf1a1109d3c50682dea849a7.zip |
Disable tests in lang/c/shared_lib on Windows
Summary: These fail because `-fPIC` is not supported on Windows.
Reviewers: zturner, jingham, clayborg
Reviewed By: clayborg
Subscribers: lldb-commits
Differential Revision: https://reviews.llvm.org/D39692
llvm-svn: 317529
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/c/shared_lib')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/TestSharedLib.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/TestSharedLib.py b/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/TestSharedLib.py index edc83bf5898..5505d15854d 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/TestSharedLib.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/TestSharedLib.py @@ -5,6 +5,7 @@ from __future__ import print_function import unittest2 import lldb +from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * import lldbsuite.test.lldbutil as lldbutil @@ -34,10 +35,12 @@ class SharedLibTestCase(TestBase): "expression GetMeASubFoo(my_foo_ptr)", startstr="(sub_foo *) $") + @expectedFailureAll(oslist=["windows"]) def test_expr(self): """Test that types work when defined in a shared library and forward-declared in the main executable""" self.common_test_expr(True) + @expectedFailureAll(oslist=["windows"]) def test_expr_no_preload(self): """Test that types work when defined in a shared library and forward-declared in the main executable, but with preloading disabled""" self.common_test_expr(False) |