<div dir="ltr">Hi.<div><br></div><div>If someone could also either give me access to <a href="http://source.squeag.org/FFI">source.squeag.org/FFI</a> or remove this test from that repository as well, I'd appreciate it.</div><div>This test was failing in the FFI test suite because there was no longer a need to send #allocateSpace on ExternalForm.  It is (was?) also incorrectly located - test in FFI, form now in EToys.</div><div><br></div><div>This should fix moving the test and fixing it (if moved to trunk); the final piece is to remove it from FFI.</div><div><br></div><div>Thanks,</div><div>-cbc</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Apr 17, 2017 at 9:44 AM,  <span dir="ltr"><<a href="mailto:commits@source.squeak.org" target="_blank">commits@source.squeak.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">A new version of EToys was added to project The Inbox:<br>
<a href="http://source.squeak.org/inbox/EToys-cbc.293.mcz" rel="noreferrer" target="_blank">http://source.squeak.org/<wbr>inbox/EToys-cbc.293.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: EToys-cbc.293<br>
Author: cbc<br>
Time: 17 April 2017, 9:44:25.306187 am<br>
UUID: 7f27f8f3-1ad3-9d4b-a359-<wbr>1b085c98e5c2<br>
Ancestors: EToys-nice.292<br>
<br>
Moved ExternalForm test from FFI package here - since the ExternalForm is now in this package.<br>
Also, fixed test.<br>
<br>
=============== Diff against EToys-nice.292 ===============<br>
<br>
Item was added:<br>
+ TestCase subclass: #EtoysExternalFormTest<br>
+       instanceVariableNames: ''<br>
+       classVariableNames: ''<br>
+       poolDictionaries: ''<br>
+       category: 'Etoys-Tests'!<br>
<br>
Item was added:<br>
+ ----- Method: EtoysExternalFormTest>><wbr>testBlitToAndFromExternalForm (in category 'as yet unclassified') -----<br>
+ testBlitToAndFromExternalForm<br>
+       "Ensure that we can blit to/from all 4 permutatations of Form and ExternalForm."<br>
+       | source external1 external2 destination |<br>
+       source := Cursor wait asCursorForm asFormOfDepth: 32.<br>
+       destination := Form extent: source extent depth: 32.<br>
+       external1 := ExternalForm extent: source extent depth: 32.<br>
+       external2 := ExternalForm extent: source extent depth: 32.<br>
+       self shouldnt: [source bits = destination bits].<br>
+       source displayOn: external1.<br>
+       external1 displayOn: external2.<br>
+       external2 displayOn: destination.<br>
+       self should: [source bits = destination bits].!<br>
<br>
<br>
</blockquote></div><br></div>