[squeak-dev] The Trunk: KernelTests-jcg.146.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Apr 6 08:41:17 UTC 2010


Joshua Gargus uploaded a new version of KernelTests to project The Trunk:
http://source.squeak.org/trunk/KernelTests-jcg.146.mcz

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

Name: KernelTests-jcg.146
Author: jcg
Time: 6 April 2010, 1:41:04.179 am
UUID: adc6fab6-404a-460e-bf69-451271ee3ccb
Ancestors: KernelTests-ar.145

One more failing test in PromiseTest (but not for long!)

=============== Diff against KernelTests-ar.145 ===============

Item was added:
+ ----- Method: PromiseTest>>testTimeout (in category 'testing') -----
+ testTimeout
+ 	| promise |
+ 	promise := Promise new.
+ 	self shouldnt: [promise waitTimeoutMSecs: 1].
+ 	self shouldnt: [promise isResolved].
+ 	promise resolveWith: 45.
+ 	self should: [promise waitTimeoutMSecs: 1].
+ 	self should: [promise isResolved].
+ 	!




More information about the Squeak-dev mailing list