summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTodd Fiala <todd.fiala@gmail.com>2015-09-14 23:17:15 +0000
committerTodd Fiala <todd.fiala@gmail.com>2015-09-14 23:17:15 +0000
commit8ef7a5b4b7270ecc4a53e053c533bcee6e6b976e (patch)
tree0204bd0272d2d4f97cdc6b27141d88975ee4acc2
parent6d43afc7bd524820e804a2ca8648e257b850332a (diff)
downloadbcm5719-llvm-8ef7a5b4b7270ecc4a53e053c533bcee6e6b976e.tar.gz
bcm5719-llvm-8ef7a5b4b7270ecc4a53e053c533bcee6e6b976e.zip
Fixup XFAIL marking on TestConstVariables for clang version
Linux/clang on clang 3.6+ is passing this test. As OS X was in a similar position, I'm guessing this was fixed by a recent compiler. Might work on 3.5/3.4, but it is definitely working on clang 3.6. I didn't break out FreeBSD since this appears to be related to a compiler fix. llvm-svn: 247633
-rw-r--r--lldb/test/lang/c/const_variables/TestConstVariables.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/test/lang/c/const_variables/TestConstVariables.py b/lldb/test/lang/c/const_variables/TestConstVariables.py
index 2d91a18f8c8..4afcf7ed1c1 100644
--- a/lldb/test/lang/c/const_variables/TestConstVariables.py
+++ b/lldb/test/lang/c/const_variables/TestConstVariables.py
@@ -16,7 +16,9 @@ class ConstVariableTestCase(TestBase):
self.buildDsym()
self.const_variable()
- @expectedFailureAll(oslist=["freebsd", "linux"], compiler="clang")
+ @expectedFailureAll(
+ oslist=["freebsd", "linux"], compiler="clang",
+ compiler_version=['<', '3.6'])
@expectedFailureAll(oslist=["freebsd", "linux"], compiler="icc")
@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")
OpenPOWER on IntegriCloud