Re: [Pharo-dev] hard to debug multi-threaded tests

2018-06-13 Thread Ben Coman
On 13 June 2018 at 20:29, Ben Coman wrote: > In Pharo 5, it was possible to do... > > TestCase subclass: #Example > etc > > Example >> test1 > [ Transcript > crShow: Processor activeProcess priority printString; > tab; > show: Processor activeProcess name. > self halt. > Transcript > crShow:

[Pharo-dev] hard to debug multi-threaded tests

2018-06-13 Thread Ben Coman
In Pharo 5, it was possible to do... TestCase subclass: #Example etc Example >> test1 [ Transcript crShow: Processor activeProcess priority printString; tab; show: Processor activeProcess name. self halt. Transcript crShow: Processor activeProcess effectiveProcess priority printString; tab; s