diff options
author | Sagar Thakur <sagar.thakur@imgtec.com> | 2015-12-05 12:01:48 +0000 |
---|---|---|
committer | Sagar Thakur <sagar.thakur@imgtec.com> | 2015-12-05 12:01:48 +0000 |
commit | 44375e42264d1eb9c77ed2f97178c05c9ec85bee (patch) | |
tree | 9bd1987e3ad725f72c1f4c33eb099af19924511a | |
parent | 474f24cc5e6b3eed67d95f2d97acab693989ef10 (diff) | |
download | bcm5719-llvm-44375e42264d1eb9c77ed2f97178c05c9ec85bee.tar.gz bcm5719-llvm-44375e42264d1eb9c77ed2f97178c05c9ec85bee.zip |
[LLDB][MIPS] Fix TestConstVariables.py
Patch by Nitesh Jain.
Summary: There is no debug information generated for variable index with –O3 optimization flag. The DW_AT_location tag in DWARF debug_info section is empty.
Reviewers: ovyalov, clayborg
Subscribers: lldb-commits, mohit.bhakkad, sagar, bhushan, jaydeep
Differential: http://reviews.llvm.org/D15224
llvm-svn: 254850
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py b/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py index 373637eb505..a112b2a1777 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py @@ -23,6 +23,7 @@ class ConstVariableTestCase(TestBase): oslist=["freebsd", "linux"], compiler="clang", compiler_version=["=", "3.8"]) @expectedFailureAll(oslist=["freebsd", "linux"], compiler="icc") + @expectedFailureAll(archs=['mips', 'mipsel', 'mips64', 'mips64el']) @expectedFailureWindows("llvm.org/pr24489: Name lookup not working correctly on Windows") @expectedFailureWindows("llvm.org/pr24490: We shouldn't be using platform-specific names like `getpid` in tests") def test_and_run_command(self): |