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].
+ !