[Lldb-commits] [PATCH] D39692: Disable tests in lang/c/shared_lib on Windows
Stephane Sezer via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Nov 6 16:15:32 PST 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL317529: Disable tests in lang/c/shared_lib on Windows (authored by sas).
Repository:
rL LLVM
https://reviews.llvm.org/D39692
Files:
lldb/trunk/packages/Python/lldbsuite/test/lang/c/shared_lib/TestSharedLib.py
Index: lldb/trunk/packages/Python/lldbsuite/test/lang/c/shared_lib/TestSharedLib.py
===================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/shared_lib/TestSharedLib.py
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/shared_lib/TestSharedLib.py
@@ -5,6 +5,7 @@
import unittest2
import lldb
+from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
import lldbsuite.test.lldbutil as lldbutil
@@ -34,10 +35,12 @@
"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)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D39692.121811.patch
Type: text/x-patch
Size: 1088 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20171107/3e9a35d5/attachment.bin>
More information about the lldb-commits
mailing list