Enable expectedFailure for all Clang versions in TestRegisterVariables

In r262970 this was changed from xfail Clang < 3.5 to > 3.5, but it
still fails on FreeBSD 10's system Clang 3.4.1 so assume it fails on
all versions.

llvm.org/pr26937

llvm-svn: 263467
This commit is contained in:
Ed Maste 2016-03-14 18:59:44 +00:00
parent 88daab9174
commit 5af4d20372
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ class RegisterVariableTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
@expectedFailureAll(oslist=['macosx'], compiler='clang', compiler_version=['<', '7.0.0'], debug_info="dsym")
@expectedFailureAll(compiler="clang", compiler_version=['>', '3.5'])
@expectedFailureAll(compiler="clang")
@expectedFailureAll(compiler="gcc", compiler_version=['>=', '4.8.2'])
def test_and_run_command(self):
"""Test expressions on register values."""