XFAIL TestInlines for Linux with gcc
authorTamas Berghammer <tberghammer@google.com>
Tue, 23 Feb 2016 11:35:38 +0000 (11:35 +0000)
committerTamas Berghammer <tberghammer@google.com>
Tue, 23 Feb 2016 11:35:38 +0000 (11:35 +0000)
llvm-svn: 261630

lldb/packages/Python/lldbsuite/test/lang/c/inlines/TestInlines.py

index f4ca515..61dbcaa 100644 (file)
@@ -4,8 +4,9 @@ from __future__ import print_function
 
 import os, time
 import lldb
+from lldbsuite.test.decorators import *
 from lldbsuite.test.lldbtest import *
-import lldbsuite.test.lldbutil as lldbutil
+from lldbsuite.test import lldbutil
 
 class InlinesTestCase(TestBase):
 
@@ -17,6 +18,7 @@ class InlinesTestCase(TestBase):
         # Find the line number to break inside main().
         self.line = line_number('inlines.c', '// Set break point at this line.')
 
+    @expectedFailureAll("llvm.org/pr26710", oslist=["linux"], compiler="gcc")
     def test(self):
         """Test that local variables are visible in expressions."""
         self.build()