forked from OSchip/llvm-project
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:
parent
88daab9174
commit
5af4d20372
|
@ -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."""
|
||||
|
|
Loading…
Reference in New Issue