diff options
author | Ed Maste <emaste@freebsd.org> | 2015-09-14 18:40:52 +0000 |
---|---|---|
committer | Ed Maste <emaste@freebsd.org> | 2015-09-14 18:40:52 +0000 |
commit | 6052b4cd028cd154164436e98c5f37bca05a3e83 (patch) | |
tree | 17f59df37d697733d47c3db77600be96827f994c /lldb/test/lang/c/const_variables/TestConstVariables.py | |
parent | 2a791d7d21c6fe3f3369eff3ebf394675b1a525d (diff) | |
download | bcm5719-llvm-6052b4cd028cd154164436e98c5f37bca05a3e83.tar.gz bcm5719-llvm-6052b4cd028cd154164436e98c5f37bca05a3e83.zip |
Correct XFAIL OS list after r247576
In ConstVariableTestCase::test_with_dwarf_and_run_command - the test
fails with Clang (and presumably ICC) also on FreeBSD.
llvm-svn: 247594
Diffstat (limited to 'lldb/test/lang/c/const_variables/TestConstVariables.py')
-rw-r--r-- | lldb/test/lang/c/const_variables/TestConstVariables.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/lang/c/const_variables/TestConstVariables.py b/lldb/test/lang/c/const_variables/TestConstVariables.py index 9b324dbf8ed..2d91a18f8c8 100644 --- a/lldb/test/lang/c/const_variables/TestConstVariables.py +++ b/lldb/test/lang/c/const_variables/TestConstVariables.py @@ -16,8 +16,8 @@ class ConstVariableTestCase(TestBase): self.buildDsym() self.const_variable() - @expectedFailureAll(oslist=["linux"], compiler="clang") - @expectedFailureAll(oslist=["linux"], compiler="icc") + @expectedFailureAll(oslist=["freebsd", "linux"], compiler="clang") + @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") @dwarf_test |