This is a small Ruby script that runs the Z80 tests included in JSMoo. It has been written at the request of the author of JSMoo to check the validity of the tests and help in their improvement. It requires the json
and z80
gems.
run-jsmoo-z80-test <JSON-file>...
If -
is passed as an argument, the script will read the JSON data from the standard input, run the tests it contains, and exit. Subsequent arguments will be ignored.
Examples:
# Run the script with specific JSON files
run-jsmoo-z80-test file1.json file2.json
# Run the script with JSON data from standard input
echo '<JSON>' | run-jsmoo-z80-test -
Once you have installed the dependencies, clone this repository and the main branch of the JSMoo repository. Next, run the script, passing it the paths to the JSON files you want to process:
mkdir work && cd work
git clone https://github.com/redcode/run-jsmoo-z80-test.git
git clone https://github.com/raddad772/jsmoo.git
run-jsmoo-z80-test/run-jsmoo-z80-test jsmoo/misc/tests/GeneratedTests/z80/v1/*.json
The z80
gem passes the full set of Z80 tests included in JSMoo:
RESULTS SUMMARY
Files: 1610 in total; 1610 passed
Tests: 1610000 in total; 1610000 passed