More unit test fixes
parent
6408b01e9d
commit
6047429401
|
@ -1,7 +1,7 @@
|
|||
IN: compiler.tests
|
||||
USING: accessors compiler compiler.units tools.test math parser
|
||||
kernel sequences sequences.private classes.mixin generic
|
||||
definitions arrays words assocs ;
|
||||
definitions arrays words assocs eval ;
|
||||
|
||||
GENERIC: method-redefine-test ( a -- b )
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
IN: compiler.tests
|
||||
USING: compiler compiler.units tools.test math parser kernel
|
||||
sequences sequences.private classes.mixin generic definitions
|
||||
arrays words assocs ;
|
||||
arrays words assocs eval ;
|
||||
|
||||
DEFER: blah
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
IN: compiler.tests
|
||||
USING: accessors compiler compiler.units tools.test math parser
|
||||
kernel sequences sequences.private classes.mixin generic
|
||||
definitions arrays words assocs ;
|
||||
definitions arrays words assocs eval ;
|
||||
|
||||
GENERIC: sheeple ( obj -- x )
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
USING: compiler.units tools.test kernel kernel.private
|
||||
sequences.private math.private math combinators strings
|
||||
alien arrays memory vocabs parser ;
|
||||
alien arrays memory vocabs parser eval ;
|
||||
IN: compiler.tests
|
||||
|
||||
! Test empty word
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
USING: locals math sequences tools.test hashtables words kernel
|
||||
namespaces arrays strings prettyprint io.streams.string parser
|
||||
accessors generic ;
|
||||
accessors generic eval ;
|
||||
IN: locals.tests
|
||||
|
||||
:: foo ( a b -- a a ) a a ;
|
||||
|
|
|
@ -7,13 +7,12 @@ init io.files bootstrap.image bootstrap.image.private vocabs
|
|||
vocabs.loader system debugger continuations ;
|
||||
IN: bootstrap.stage1
|
||||
|
||||
{ "resource:core" } vocab-roots set
|
||||
|
||||
"Bootstrap stage 1..." print flush
|
||||
|
||||
"resource:core/bootstrap/primitives.factor" run-file
|
||||
|
||||
load-help? off
|
||||
{ "resource:core" } vocab-roots set
|
||||
|
||||
! Create a boot quotation for the target
|
||||
[
|
||||
|
|
Loading…
Reference in New Issue