The Trunk: Tests-eem.391.mcz

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

The Trunk: Tests-eem.391.mcz

commits-2
Eliot Miranda uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-eem.391.mcz

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

Name: Tests-eem.391
Author: eem
Time: 30 December 2017, 4:36:22.607956 pm
UUID: 7fec38f3-876c-485a-ac8c-12d217e5a567
Ancestors: Tests-eem.390

Add an ImageSegment test that checks contexts can be written out.

=============== Diff against Tests-eem.390 ===============

Item was added:
+ ----- Method: ImageSegmentTest>>testContextsShouldBeWritableToaFile (in category 'testing') -----
+ testContextsShouldBeWritableToaFile
+ "This should not throw an exception"
+ NativeImageSegment new
+ copyFromRoots: {thisContext. thisContext copyStack} sizeHint: 100;
+ extract;
+ writeToFile: 'ContextChain';
+ yourself
+
+ "TODO: write assertions showing that something meaningful actually happened."
+
+ "TODO:  bring them back in again"!