Tobias Pape uploaded a new version of ShoutTests to project The Trunk:
http://source.squeak.org/trunk/ShoutTests-topa.25.mcz==================== Summary ====================
Name: ShoutTests-topa.25
Author: topa
Time: 2 April 2015, 10:20:38.688 am
UUID: 3e48d7b4-05be-4eee-b294-541752c399bd
Ancestors: ShoutTests-eem.24
Try to lower testing time by caching source file access.
=============== Diff against ShoutTests-eem.24 ===============
Item was changed:
----- Method: SHParserST80Test>>testObjectClass (in category 'tests-smoke') -----
testObjectClass
+
+ CurrentReadOnlySourceFiles cacheDuring: [self verifyClass: Object].!
- self verifyClass: Object!
Item was changed:
----- Method: SHParserST80Test>>verifyHierarchy: (in category 'utilities') -----
verifyHierarchy: aBehavior
+
+ CurrentReadOnlySourceFiles cacheDuring: [
+ aBehavior withAllSubclassesDo: [:class |
+ self verifyClass: class; verifyClass: class class]].!
- aBehavior withAllSubclassesDo: [ :class | self verifyClass: class; verifyClass: class class ]!