-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Labels
Description
Currently runtests.fth uses S" in interpreter mode which is a File-Access word set capability and uses INCLUDED also from that word set.
I don't think we can do much about INCLUDED except to say that if a system cannot include a file they'll have to find some way of streaming it in whhich we can't help with as it's likely to be different in all systems.
The S" problem can be solved in two ways, before and after Core tests
- Before core.fr we can use a trick such as:
( core.fr ) SOURCE DROP 2 CHARS + 7 INCLUDED - After core.fr we can define:
: TEST-FILE BL WORD COUNT INCLUDED ;
where usage is:
TEST-FILE coreplustest.fth
etc.
For neatness we might want to define LOAD-FILE for errorreport.fth as that's not being tested.
Any other ideas?