[squeak-dev] The Trunk: ToolsTests-mt.118.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Jan 20 14:50:07 UTC 2023


Marcel Taeumel uploaded a new version of ToolsTests to project The Trunk:
http://source.squeak.org/trunk/ToolsTests-mt.118.mcz

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

Name: ToolsTests-mt.118
Author: mt
Time: 20 January 2023, 3:50:07.134382 pm
UUID: 3745d303-1094-ec4a-beed-3296cea1f58d
Ancestors: ToolsTests-ct.117

Complements System-mt.1384

=============== Diff against ToolsTests-ct.117 ===============

Item was changed:
  ----- Method: DebuggerTests>>test06DebugSpecificContext (in category 'tests') -----
  test06DebugSpecificContext
  	
  	| context |
  
  	process := [ #(1 2 3) collect: [:ea | ea odd ifTrue: [ ea ] ifFalse: [ Processor activeProcess suspend ] ] ] newProcess.
  	process priority: Processor activeProcess priority + 1.
  	process resume.
  
  	"Find specific context by following #sender chain."
  	context := process suspendedContext.
  	[context selector = #collect: ] whileFalse: [context := context sender].
  
+ 	debugger := ToolSet debugProcess: process context: context label: 'test06DebugSpecificContext' contents: nil fullView: true.
- 	debugger := ToolSet debugProcess: process context: context label: nil contents: nil fullView: true.
  
  	self assert: debugger contextStackTop = context.!



More information about the Squeak-dev mailing list