Author: Pavel Kosov
Date: 2021-09-14T18:57:03+03:00
New Revision: be98d938794fb531db6f04e55775e4096e4c7ab1

URL: 
https://github.com/llvm/llvm-project/commit/be98d938794fb531db6f04e55775e4096e4c7ab1
DIFF: 
https://github.com/llvm/llvm-project/commit/be98d938794fb531db6f04e55775e4096e4c7ab1.diff

LOG: [LLDB] Disable FP test for arm 32 bit

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

~~~

OS Laboratory. Huawei RRI. Saint-Petersburg

Added: 
    

Modified: 
    lldb/test/API/lang/c/fpeval/TestFPEval.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/lang/c/fpeval/TestFPEval.py 
b/lldb/test/API/lang/c/fpeval/TestFPEval.py
index 694d1ed7aa99d..6a3dc955ebf66 100644
--- a/lldb/test/API/lang/c/fpeval/TestFPEval.py
+++ b/lldb/test/API/lang/c/fpeval/TestFPEval.py
@@ -19,6 +19,7 @@ def setUp(self):
         # 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()


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to