The Trunk: ST80Tests-pre.4.mcz

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

The Trunk: ST80Tests-pre.4.mcz

commits-2
Patrick Rein uploaded a new version of ST80Tests to project The Trunk:
http://source.squeak.org/trunk/ST80Tests-pre.4.mcz

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

Name: ST80Tests-pre.4
Author: pre
Time: 19 May 2016, 11:31:47.505052 am
UUID: 5fdce0f2-ef8e-054b-99ce-5178af9ee632
Ancestors: ST80Tests-ul.3

Fixes a test for the ST80 package which asserts the packages the ST80 package depends on. Adds Monticello to the list as it is now needed for the unloading capabilities

=============== Diff against ST80Tests-ul.3 ===============

Item was changed:
  ----- Method: ST80PackageDependencyTest>>testST80 (in category 'as yet unclassified') -----
  testST80
  self testPackage: #ST80 dependsExactlyOn: #(
  #'Chronology-Core'
  Collections
  Compiler
  Files
  Graphics
  Kernel
  Morphic
  Multilingual
  Network
  SUnit
  System
  #'ToolBuilder-Kernel'
  Tools
+ Monticello
  ).!


Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: ST80Tests-pre.4.mcz

Levente Uzonyi
IMHO ST80 should be able to exist without Monticello in the image, so we
should resolve this dependency.

Levente

On Thu, 19 May 2016, [hidden email] wrote:

> Patrick Rein uploaded a new version of ST80Tests to project The Trunk:
> http://source.squeak.org/trunk/ST80Tests-pre.4.mcz
>
> ==================== Summary ====================
>
> Name: ST80Tests-pre.4
> Author: pre
> Time: 19 May 2016, 11:31:47.505052 am
> UUID: 5fdce0f2-ef8e-054b-99ce-5178af9ee632
> Ancestors: ST80Tests-ul.3
>
> Fixes a test for the ST80 package which asserts the packages the ST80 package depends on. Adds Monticello to the list as it is now needed for the unloading capabilities
>
> =============== Diff against ST80Tests-ul.3 ===============
>
> Item was changed:
>  ----- Method: ST80PackageDependencyTest>>testST80 (in category 'as yet unclassified') -----
>  testST80
>   self testPackage: #ST80 dependsExactlyOn: #(
>   #'Chronology-Core'
>   Collections
>   Compiler
>   Files
>   Graphics
>   Kernel
>   Morphic
>   Multilingual
>   Network
>   SUnit
>   System
>   #'ToolBuilder-Kernel'
>   Tools
> + Monticello
>   ).!
>
>
>

Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: ST80Tests-pre.4.mcz

marcel.taeumel
Levente Uzonyi wrote
IMHO ST80 should be able to exist without Monticello in the image, so we
should resolve this dependency.

Levente
Hi Levente,

I talked about this with Tobias today. The issue is package/code unloading. PackageInfo should be capable of remove code (including extensions) from the system. We still need, however, another hook to also clean up Monticello working copies for that case.

We could use object events for that.

Best,
Marcel