A new version of FFI-Tests was added to project The Inbox:
http://source.squeak.org/inbox/FFI-Tests-KenD.12.mcz==================== Summary ====================
Name: FFI-Tests-KenD.12
Author: KenD
Time: 14 February 2019, 10:12:49.844066 am
UUID: 6fc0c2f7-6dc8-42ca-b1af-c567ba756a07
Ancestors: FFI-Tests-KenD.11
Float comparison refinement: testGenericDoubleCall2
=============== Diff against FFI-Tests-KenD.11 ===============
Item was changed:
----- Method: FFIPluginTests>>testGenericDoubleCall2 (in category 'simple tests') -----
testGenericDoubleCall2
"Test using generic FFI spec"
| result |
+ result := FFITestLibrary
+ ffiTestDoubles9: 1.0
+ d: 2.0
+ d: 3.0
+ d: 4.0
+ d: 5.0
+ d: 6.0
+ d: 7.0
+ d: 8.0
+ d: 9.0.
+ self assert: (result closeTo: 45.0)!
- result := FFITestLibrary ffiTestDoubles9: 1.0 d: 2.0 d: 3.0 d: 4.0 d: 5.0 d: 6.0 d: 7.0 d: 8.0 d: 9.0.
- self assert: result = 45.0!