diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2015-09-14 18:34:36 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2015-09-14 18:34:36 +0000 |
commit | f9fe8b8d4933a93007196c7e2aada50f72f9549c (patch) | |
tree | e91df4faee042f35c67d3c10240d9ee3f75dcabc /lldb/test/lang/c/const_variables/TestConstVariables.py | |
parent | 2930735c1e1d72150fd311b101bf3e7eadea221d (diff) | |
download | bcm5719-llvm-f9fe8b8d4933a93007196c7e2aada50f72f9549c.tar.gz bcm5719-llvm-f9fe8b8d4933a93007196c7e2aada50f72f9549c.zip |
Fix up bad compiler spec on ConstVariableTestCase; fixup two more OS X unexpected successes.
llvm-svn: 247591
Diffstat (limited to 'lldb/test/lang/c/const_variables/TestConstVariables.py')
-rw-r--r-- | lldb/test/lang/c/const_variables/TestConstVariables.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/lang/c/const_variables/TestConstVariables.py b/lldb/test/lang/c/const_variables/TestConstVariables.py index 2209816c359..9b324dbf8ed 100644 --- a/lldb/test/lang/c/const_variables/TestConstVariables.py +++ b/lldb/test/lang/c/const_variables/TestConstVariables.py @@ -16,7 +16,8 @@ class ConstVariableTestCase(TestBase): self.buildDsym() self.const_variable() - @expectedFailureAll(oslist=["linux"], compiler=["clang", "icc"]) + @expectedFailureAll(oslist=["linux"], compiler="clang") + @expectedFailureAll(oslist=["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") @dwarf_test |