[Lldb-commits] [lldb] r247633 - Fixup XFAIL marking on TestConstVariables for clang version
Todd Fiala via lldb-commits
lldb-commits at lists.llvm.org
Mon Sep 14 16:17:15 PDT 2015
Author: tfiala
Date: Mon Sep 14 18:17:15 2015
New Revision: 247633
URL: http://llvm.org/viewvc/llvm-project?rev=247633&view=rev
Log:
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.
Modified:
lldb/trunk/test/lang/c/const_variables/TestConstVariables.py
Modified: lldb/trunk/test/lang/c/const_variables/TestConstVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/const_variables/TestConstVariables.py?rev=247633&r1=247632&r2=247633&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/const_variables/TestConstVariables.py (original)
+++ lldb/trunk/test/lang/c/const_variables/TestConstVariables.py Mon Sep 14 18:17:15 2015
@@ -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")
More information about the lldb-commits
mailing list