Merge pull request #3 from nineties/move_tester

Move test/tester.fs to lib/tester.fs
This commit is contained in:
Koichi NAKAMURA 2021-01-16 19:02:32 +09:00 committed by GitHub
commit 5e8e9f978d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 1 deletions

View file

@ -9,3 +9,13 @@ defined? roll [unless]
dup 0<= if drop else swap >r 1- recurse r> swap then
;
[then]
\ Ignore test codes. lib/tester.fs will redefine this when
\ running tests.
: T{
begin
word throw
s" }T" streq if exit then
again
;

View file

@ -6,7 +6,8 @@
." Running PlanckForth test programs" cr
include test/tester.fs
include lib/tester.fs
include test/core.fs
include test/utilities.fs
include test/errorreport.fs