[LLDB] Disable FP test for arm 32 bit

Test was introduced in https://reviews.llvm.org/D126359

~~~

OS Laboratory. Huawei RRI. Saint-Petersburg
This commit is contained in:
Pavel Kosov 2021-09-14 18:50:18 +03:00 committed by k00511732
parent d2ce2f1b5c
commit be98d93879
1 changed files with 1 additions and 0 deletions
lldb/test/API/lang/c/fpeval

View File

@ -19,6 +19,7 @@ class FPEvalTestCase(TestBase):
# Find the line number to break inside main().
self.line = line_number('main.c', '// Set break point at this line.')
@skipIf(archs=no_match(['amd64', 'x86_64', 'arm64'])) # lldb jitter incorrectly evals function with FP args on 32 bit arm
def test(self):
"""Test floating point expressions while jitter is disabled."""
self.build()