A new version of KernelTests was added to project The Inbox:
http://source.squeak.org/inbox/KernelTests-ct.388.mcz==================== Summary ====================
Name: KernelTests-ct.388
Author: ct
Time: 28 October 2020, 11:36:38.237544 pm
UUID: c611de6b-f83d-ac45-a83f-00082a8311b4
Ancestors: KernelTests-ul.386
Adds test for a simulation bug that occurs while executing ProtoObject >> #doesNotUnderstand:.
=============== Diff against KernelTests-ul.386 ===============
Item was added:
+ ----- Method: MethodContextTest>>testProtoObjectDoesNotUnderstand (in category 'tests') -----
+ testProtoObjectDoesNotUnderstand
+
+ self assert:
+ [Context runSimulated:
+ [self
+ executeShould: [Compiler evaluate: 'super foo' for: Object new]
+ inScopeOf: MessageNotUnderstood]].!