The Trunk: SUnit-tpr.110.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-tpr.110.mcz

commits-2
tim Rowledge uploaded a new version of SUnit to project The Trunk:
http://source.squeak.org/trunk/SUnit-tpr.110.mcz

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

Name: SUnit-tpr.110
Author: tpr
Time: 6 November 2017, 3:01:43.268905 pm
UUID: 0754924f-c223-4120-a86a-2973ccaac087
Ancestors: SUnit-eem.109

Make the default timeout for TestCases depend on the system performance check

=============== Diff against SUnit-eem.109 ===============

Item was changed:
  ----- Method: TestCase>>defaultTimeout (in category 'accessing') -----
  defaultTimeout
  "Answer the default timeout to use for tests in this test case.
  The timeout is a value in seconds."
 
+ ^Smalltalk isLowerPerformance ifTrue:[ 25] ifFalse: [5] "seconds"!
- ^5 "seconds"!