[Lldb-commits] [lldb] r256006 - mark TestGlobalVariables.py as XFAIL on OS X dwarf.

Todd Fiala via lldb-commits lldb-commits at lists.llvm.org
Fri Dec 18 10:40:34 PST 2015


Author: tfiala
Date: Fri Dec 18 12:40:33 2015
New Revision: 256006

URL: http://llvm.org/viewvc/llvm-project?rev=256006&view=rev
Log:
mark TestGlobalVariables.py as XFAIL on OS X dwarf.

tracking bug:
https://llvm.org/bugs/show_bug.cgi?id=25872

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py?rev=256006&r1=256005&r2=256006&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py Fri Dec 18 12:40:33 2015
@@ -3,9 +3,6 @@
 from __future__ import print_function
 
 
-
-import os, time
-import lldb
 from lldbsuite.test.lldbtest import *
 import lldbsuite.test.lldbutil as lldbutil
 
@@ -22,7 +19,8 @@ class GlobalVariablesTestCase(TestBase):
         self.shlib_names = ["a"]
 
     @expectedFailureWindows("llvm.org/pr24764")
-    def test(self):
+    @expectedFailureAll("llvm.org/pr25872", oslist=["macosx"], debug_info="dwarf")
+    def test_c_global_variables(self):
         """Test 'frame variable --scope --no-args' which omits args and shows scopes."""
         self.build()
 




More information about the lldb-commits mailing list