Skip to content

Commit

Permalink
Created new package CAST-Tests
Browse files Browse the repository at this point in the history
Update Baseline with new package CAST-Tests
  • Loading branch information
Hernán Morales Durand committed Aug 16, 2023
1 parent 7b3c5c8 commit 30e2427
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
14 changes: 5 additions & 9 deletions smalltalksrc/BaselineOfVMMaker/BaselineOfVMMaker.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,10 @@ BaselineOfVMMaker >> baseline: spec [

"Slang, the basics"
spec
package: 'CAST' with: [
spec requires: #( 'SmaCC-GLR' )
];
package: 'Slang' with: [
spec requires: #( 'CAST' )
];
package: 'Slang-Tests' with: [
spec requires: #('Slang') ].
package: 'CAST' with: [ spec requires: #('SmaCC-GLR' ) ];
package: 'CAST-Tests' with: [ spec requires: #('CAST') ];
package: 'Slang' with: [ spec requires: #('CAST') ];
package: 'Slang-Tests' with: [ spec requires: #('Slang') ].

"Melchor is a VM-oriented Slang"
spec package: 'Melchor' with: [
Expand Down Expand Up @@ -68,6 +64,6 @@ BaselineOfVMMaker >> baseline: spec [
spec group: 'plugins' with: #('FileAttributesPlugin').
spec group: 'core' with: #('VMMaker').
spec group: 'tools' with: #('VMMaker-Tools').
spec group: 'tests' with: #('VMMakerTests').
spec group: 'tests' with: #('VMMakerTests' 'CAST-Tests').
spec group: 'default' with: #( 'core' 'plugins' 'tools' 'tests') ]
]
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions smalltalksrc/CAST-Tests/package.st
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Package { #name : #'CAST-Tests' }

0 comments on commit 30e2427

Please sign in to comment.