diff options
author | Tamas Berghammer <tberghammer@google.com> | 2015-12-02 13:36:17 +0000 |
---|---|---|
committer | Tamas Berghammer <tberghammer@google.com> | 2015-12-02 13:36:17 +0000 |
commit | 2a7043cd7011148ebb23b767e8a0178b967a07f8 (patch) | |
tree | f728cfe0dc5e06dcdcb30ccc1d614925b9dfe2e1 /lldb/packages/Python/lldbsuite/test | |
parent | ba13ad58f7a220b5c7d636ac9aa0580ec73f5de0 (diff) | |
download | bcm5719-llvm-2a7043cd7011148ebb23b767e8a0178b967a07f8.tar.gz bcm5719-llvm-2a7043cd7011148ebb23b767e8a0178b967a07f8.zip |
XFAIL TestReturnValue for linux i386 clang 3.5-3.6
The test failing most likely because clang 3.5 and 3.6 uses an incorrect
ABI for returning small structs from a function.
llvm-svn: 254507
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py b/lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py index db4eedd9991..fad932cf3d0 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py @@ -17,6 +17,7 @@ class ReturnValueTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) @expectedFailureAll(oslist=["macosx","freebsd"], archs=["i386"]) + @expectedFailureAll(oslist=["linux"], compiler="clang", compiler_version=["<=", "3.6"], archs=["i386"]) @expectedFailureWindows("llvm.org/pr24778") @add_test_categories(['pyapi']) def test_with_python(self): |