The Trunk: SUnitGUI-ul.52.mcz

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

The Trunk: SUnitGUI-ul.52.mcz

commits-2
Levente Uzonyi uploaded a new version of SUnitGUI to project The Trunk:
http://source.squeak.org/trunk/SUnitGUI-ul.52.mcz

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

Name: SUnitGUI-ul.52
Author: ul
Time: 7 September 2012, 9:07:18.081 pm
UUID: 5d4875eb-80a7-794d-89fd-1c0570ef8675
Ancestors: SUnitGUI-cmm.51

Show which test is being run by TestRunner on the progress bar.

=============== Diff against SUnitGUI-cmm.51 ===============

Item was changed:
  ----- Method: TestRunner>>basicRunSuite:do: (in category 'processing') -----
  basicRunSuite: aTestSuite do: aBlock
+
  self basicSetUpSuite: aTestSuite.
+ [
+ | prefix |
+ prefix := aTestSuite name isEmptyOrNil
+ ifTrue: [ '' ]
+ ifFalse: [ aTestSuite name, ' - ' ].
+ aTestSuite tests
+ do: aBlock
+ displayingProgress: [ :test | prefix, test printString ]
+ every: 0 "Update the label for all tests" ]
+ ensure: [ self basicTearDownSuite: aTestSuite ].
- [ aTestSuite name isEmptyOrNil
- ifTrue: [ aTestSuite tests do: aBlock ]
- ifFalse: [ aTestSuite tests do: aBlock displayingProgress: aTestSuite name ] ]
- ensure: [ self basicTearDownSuite: aTestSuite ].
  !


Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: SUnitGUI-ul.52.mcz

Frank Shearar-3
On 7 September 2012 20:12,  <[hidden email]> wrote:

> Levente Uzonyi uploaded a new version of SUnitGUI to project The Trunk:
> http://source.squeak.org/trunk/SUnitGUI-ul.52.mcz
>
> ==================== Summary ====================
>
> Name: SUnitGUI-ul.52
> Author: ul
> Time: 7 September 2012, 9:07:18.081 pm
> UUID: 5d4875eb-80a7-794d-89fd-1c0570ef8675
> Ancestors: SUnitGUI-cmm.51
>
> Show which test is being run by TestRunner on the progress bar.
>
> =============== Diff against SUnitGUI-cmm.51 ===============

I just ran CI tests here, and found I've broken the CI environment for
Linux. When I upgraded to r2585 I didn't add
coglinux/lib/squeak/4.0-2585/ to the repo. I'll fix that at some point
today, rerun the tests, and let you know when I've fixed things.

Sorry!

frank

Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: SUnitGUI-ul.52.mcz

Frank Shearar-3
On 8 September 2012 11:44, Frank Shearar <[hidden email]> wrote:

> On 7 September 2012 20:12,  <[hidden email]> wrote:
>> Levente Uzonyi uploaded a new version of SUnitGUI to project The Trunk:
>> http://source.squeak.org/trunk/SUnitGUI-ul.52.mcz
>>
>> ==================== Summary ====================
>>
>> Name: SUnitGUI-ul.52
>> Author: ul
>> Time: 7 September 2012, 9:07:18.081 pm
>> UUID: 5d4875eb-80a7-794d-89fd-1c0570ef8675
>> Ancestors: SUnitGUI-cmm.51
>>
>> Show which test is being run by TestRunner on the progress bar.
>>
>> =============== Diff against SUnitGUI-cmm.51 ===============
>
> I just ran CI tests here, and found I've broken the CI environment for
> Linux. When I upgraded to r2585 I didn't add
> coglinux/lib/squeak/4.0-2585/ to the repo. I'll fix that at some point
> today, rerun the tests, and let you know when I've fixed things.

Fixed!

frank