forked from OSchip/llvm-project
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
This commit is contained in:
parent
d5e2e8393b
commit
d20106b5ec
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue