mirror of
https://github.com/transistorfet/moa.git
synced 2024-11-22 10:32:59 +00:00
f8083db181
Special thanks to raddad772 https://github.com/raddad772 Also added some fixes to the Z80 for panicking math operations, but it still won't complete due to an unimplemented instruction
12 lines
325 B
Bash
Executable File
12 lines
325 B
Bash
Executable File
#!/bin/bash
|
|
COMMIT=$(git rev-parse HEAD)
|
|
DATE=$(date --iso)
|
|
LOCATION=$(dirname ${BASH_SOURCE[0]})
|
|
RESULTS=latest.txt
|
|
{
|
|
cd $LOCATION
|
|
echo "Last run on $DATE at commit $COMMIT" | tee $RESULTS
|
|
echo "" | tee -a $RESULTS
|
|
cargo run -- -q --testsuite "../jsmoo/misc/tests/GeneratedTests/z80/v1/" | tee -a $RESULTS
|
|
}
|