mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-25 07:32:16 +00:00
21 lines
1.3 KiB
Markdown
21 lines
1.3 KiB
Markdown
|
This file contains only the [Falderal][] directives that define the different
|
||
|
functionalities tested by the test suite, assuming that it's the reference
|
||
|
implementation, `sixtypical`, that is going to implement these functionalities.
|
||
|
|
||
|
[Falderal]: http://catseye.tc/node/Falderal
|
||
|
|
||
|
-> Functionality "Check syntax of SixtyPical program" is implemented by
|
||
|
-> shell command "bin/sixtypical --parse-only --traceback %(test-body-file) && echo ok"
|
||
|
|
||
|
-> Functionality "Analyze SixtyPical program" is implemented by
|
||
|
-> shell command "bin/sixtypical --analyze-only --traceback %(test-body-file) && echo ok"
|
||
|
|
||
|
-> Functionality "Compile SixtyPical program" is implemented by
|
||
|
-> shell command "bin/sixtypical --output-format=c64-basic-prg --traceback %(test-body-file) --output /tmp/foo && tests/appliances/bin/dcc6502-adapter </tmp/foo"
|
||
|
|
||
|
-> Functionality "Dump fallthru info for SixtyPical program" is implemented by
|
||
|
-> shell command "bin/sixtypical --optimize-fallthru --dump-fallthru-info --analyze-only --traceback %(test-body-file)"
|
||
|
|
||
|
-> Functionality "Compile SixtyPical program with fallthru optimization" is implemented by
|
||
|
-> shell command "bin/sixtypical --output-format=c64-basic-prg --optimize-fallthru --traceback %(test-body-file) --output /tmp/foo && tests/appliances/bin/dcc6502-adapter </tmp/foo"
|