The Trunk: SUnit-fn.114.mcz

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

The Trunk: SUnit-fn.114.mcz

commits-2
Fabio Niephaus uploaded a new version of SUnit to project The Trunk:
http://source.squeak.org/trunk/SUnit-fn.114.mcz

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

Name: SUnit-fn.114
Author: fn
Time: 1 January 2019, 11:17:27.195303 pm
UUID: 1fb994c8-2dce-4fab-9142-a3e6cd4728b7
Ancestors: SUnit-eem.113

Dynamically determine delay duration that exceeds the test's timeout. This way, the test also passes on low performance VMs (see Smalltalk>>#isLowerPerformance).

=============== Diff against SUnit-eem.113 ===============

Item was changed:
  ----- Method: SUnitTest>>testTestTimeout (in category 'testing') -----
  testTestTimeout
+ self should:[(Delay forSeconds: (self timeoutForTest + 1)) wait] raise: TestFailure.
- self should:[(Delay forSeconds: 6) wait] raise: TestFailure.
  !