Skip RegisterCommandsTestCase.test_fp_register_write on Android i386

it appears a kernel bug is preventing us from writing into the register.

llvm-svn: 246964
This commit is contained in:
Pavel Labath 2015-09-07 11:59:01 +00:00
parent ada7091812
commit 058faef6ce
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@ class RegisterCommandsTestCase(TestBase):
self.buildDefault() self.buildDefault()
self.register_commands() self.register_commands()
@skipIfTargetAndroid(archs=["i386"]) # Writing of mxcsr register fails, presumably due to a kernel/hardware problem
def test_fp_register_write(self): def test_fp_register_write(self):
"""Test commands that write to registers, in particular floating-point registers.""" """Test commands that write to registers, in particular floating-point registers."""
if not self.getArchitecture() in ['amd64', 'i386', 'x86_64']: if not self.getArchitecture() in ['amd64', 'i386', 'x86_64']: