diff options
-rw-r--r-- | lldb/test/lang/c/const_variables/TestConstVariables.py | 4 |
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") |