[squeak-dev] The Trunk: System-codefrau.1205.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Dec 21 06:24:21 UTC 2020


Vanessa Freudenberg uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-codefrau.1205.mcz

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

Name: System-codefrau.1205
Author: codefrau
Time: 20 December 2020, 10:23:10.790782 pm
UUID: f94486f3-3743-4300-a495-c2a89089e122
Ancestors: System-dtl.1204

Update platformName for SqueakJS 1.0

=============== Diff against System-dtl.1204 ===============

Item was changed:
  ----- Method: SmalltalkImage>>isLowerPerformance (in category 'system attributes') -----
  isLowerPerformance
  	"Some operations - TestCases for example - need an idea of the typical performance of the system on which they are being performed. For now we will simply assert that running on an ARM cpu or as a SqueakJS instance is enough of a discriminator. Options for the future might also involve whether the vm is a full Cog or Sisata system, even actually measuring the performance at some point to be sure"
  	^ (self platformSubtype beginsWith: 'arm') "Raspberry PI for example"
+ 		or: [self platformName = 'JS'] "SqueakJS"!
- 		or: [self platformName = 'Web'] "SqueakJS"!



More information about the Squeak-dev mailing list