The Trunk: ToolsTests-ct.137.mcz

[email protected] Mon, 6 Jul 2026 14:01:50 0000
Newsgroups gmane.comp.lang.smalltalk.squeak.general
Message-ID <[email protected]>
Christoph Thiede uploaded a new version of ToolsTests to project The Trunk:
http://source.squeak.org/trunk/ToolsTests-ct.137.mcz

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

Name: ToolsTests-ct.137
Author: ct
Time: 6 July 2026, 4:01:50.15305 pm
UUID: c81fddd6-3b59-4d0c-9572-c1d43c60556a
Ancestors: ToolsTests-ct.136

Fixes DebuggerTests to run in smalltalkCI, where a CommandLineToolSet is installed by default.

=============== Diff against ToolsTests-ct.136 ===============

Item was added:
+ ----- Method: DebuggerTests>>installDefaultToolSet (in category 'support') -----
+ installDefaultToolSet
+ 
+ 	ToolSet default: StandardToolSet.!

Item was changed:
  ----- Method: DebuggerTests>>setUp (in category 'running') -----
  setUp
  
  	super setUp.
  	
  	Project current isMorphic ifFalse: [self fail].
  	Project current uiProcess isActiveProcess ifFalse: [self fail].
  
  	reset := {
  		[:enable | [enable ifTrue: [Preferences enable: #logDebuggerStackToFile]]]
  			value: Preferences logDebuggerStackToFile.
+ 		[:ts | self installDefaultToolSet. [self uninstallToolSet. ToolSet default: ts]]
- 		[:ts | [self uninstallToolSet. ToolSet default: ts]]
  			value: ToolSet default.
  	}.
  	
  	Preferences disable: #logDebuggerStackToFile.!

Squeak-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]