diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/c')
3 files changed, 2 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py b/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py index 0d078d85d51..30175c5e1c1 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py @@ -21,7 +21,6 @@ class BitfieldsTestCase(TestBase): self.line = line_number('main.c', '// Set break point at this line.') @skipIfWindows # BitFields exhibit crashes in record layout on Windows (http://llvm.org/pr21800) - @expectedFailureAll("llvm.org/pr27510", oslist=["linux"], compiler="clang", compiler_version=[">=", "3.9"]) def test_and_run_command(self): """Test 'frame variable ...' on a variable with bitfields.""" self.build() diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py b/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py index 94a4975da9c..99544c7bd80 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py @@ -22,7 +22,7 @@ class ConstVariableTestCase(TestBase): compiler="clang", compiler_version=["=", "3.7"]) @expectedFailureAll( oslist=["freebsd", "linux"], - compiler="clang", compiler_version=[">=", "3.8"]) + compiler="clang", compiler_version=["=", "3.8"]) @expectedFailureAll(oslist=["freebsd", "linux"], compiler="icc") @expectedFailureAll(archs=['mips', 'mipsel', 'mips64', 'mips64el']) @expectedFailureAll(oslist=["linux"], archs=['arm', 'aarch64'], bugnumber="llvm.org/pr27883") diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/TestRegisterVariables.py b/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/TestRegisterVariables.py index 0855a02177c..5c87059d920 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/TestRegisterVariables.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/TestRegisterVariables.py @@ -92,8 +92,7 @@ class RegisterVariableTestCase(TestBase): @expectedFailureAll(compiler="clang", compiler_version=['<', '3.5']) - @expectedFailureAll(compiler="gcc", compiler_version=['>=', '4.8.2']) - @expectedFailureAll(oslist="linux", archs="i386") + @expectedFailureAll(compiler="gcc", compiler_version=['>=', '4.8.2'], archs="i386") def test_and_run_command(self): """Test expressions on register values.""" |