diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2015-12-18 18:40:33 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2015-12-18 18:40:33 +0000 |
commit | 2094c03803a78c86278a7280421ed038a3fc205b (patch) | |
tree | 0d484662f71f5139e82b4794f1a534265b38c702 /lldb/packages/Python | |
parent | 123048d26ad0950348081a4698731b82f40dd0e2 (diff) | |
download | bcm5719-llvm-2094c03803a78c86278a7280421ed038a3fc205b.tar.gz bcm5719-llvm-2094c03803a78c86278a7280421ed038a3fc205b.zip |
mark TestGlobalVariables.py as XFAIL on OS X dwarf.
tracking bug:
https://llvm.org/bugs/show_bug.cgi?id=25872
llvm-svn: 256006
Diffstat (limited to 'lldb/packages/Python')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py b/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py index 46cf54397ac..1f91cd1660c 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py @@ -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() |