The Trunk: KernelTests-eem.322.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: KernelTests-eem.322.mcz

commits-2
Eliot Miranda uploaded a new version of KernelTests to project The Trunk:
http://source.squeak.org/trunk/KernelTests-eem.322.mcz

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

Name: KernelTests-eem.322
Author: eem
Time: 23 March 2017, 10:58:30.6781 am
UUID: b6798800-d9b8-4301-a3cd-396963409a59
Ancestors: KernelTests-eem.321

Eliominate tests for methods having the new property format.  They have for several years now.

=============== Diff against KernelTests-eem.321 ===============

Item was removed:
- ----- Method: CompiledMethodTest>>testHasNewPropertyFormat (in category 'tests - testing') -----
- testHasNewPropertyFormat
- | method |
- method := (self class)>>#returnTrue.
- self assert: method hasNewPropertyFormat.
- !

Item was removed:
- ----- Method: MethodPropertiesTest>>testAllMethodsHaveNewPropertyFormat (in category 'testing') -----
- testAllMethodsHaveNewPropertyFormat
- Smalltalk garbageCollect.
- self assert: (CompiledMethod allInstances
- reject: [:cm | cm hasNewPropertyFormat]) isEmpty
- description: 'CompiledMethods must have new property format'!