[squeak-dev] FFI: FFI-Tests-eem.71.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Mar 12 01:46:14 UTC 2023


Eliot Miranda uploaded a new version of FFI-Tests to project FFI:
http://source.squeak.org/FFI/FFI-Tests-eem.71.mcz

==================== Summary ====================

Name: FFI-Tests-eem.71
Author: eem
Time: 11 March 2023, 5:46:13.184007 pm
UUID: db60f962-7d44-48b3-bce4-734c13fe6641
Ancestors: FFI-Tests-mt.70

Update FFIPluginTests>>arm64Check now that the latest version of the plugin is ok.

=============== Diff against FFI-Tests-mt.70 ===============

Item was changed:
  ----- Method: FFIPluginTests>>arm64Check (in category 'support') -----
  arm64Check
+ 	"If required, mark the current test as failure to avoid segmentation fault
+ 	 due to issues in older versions of the plugin code."
- 	"Mark the current test as failure to avoid segmentation fault due to issues in the plugin code."
  	
+ 	(FFIPlatformDescription current isARM
+ 	 and: [FFIPlatformDescription current wordSize = 8
+ 	 and: [Smalltalk vmVMMakerVersion < 3309]]) ifTrue:
+ 		[self fail: 'Not supported. Segmentation fault avoided.']!
- 	(FFIPlatformDescription current isARM and: [FFIPlatformDescription current wordSize = 8])
- 		ifTrue: [self fail: 'Not supported. Segmentation fault avoided.'].!



More information about the Squeak-dev mailing list