[Lldb-commits] [lldb] r254850 - [LLDB][MIPS] Fix TestConstVariables.py

Sagar Thakur via lldb-commits lldb-commits at lists.llvm.org
Sat Dec 5 04:01:49 PST 2015


Author: slthakur
Date: Sat Dec  5 06:01:48 2015
New Revision: 254850

URL: http://llvm.org/viewvc/llvm-project?rev=254850&view=rev
Log:
[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

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py?rev=254850&r1=254849&r2=254850&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py Sat Dec  5 06:01:48 2015
@@ -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):




More information about the lldb-commits mailing list