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
353 B
Bash
Executable File
12 lines
353 B
Bash
Executable File
#!/bin/bash
|
|
COMMIT=$(git rev-parse HEAD)
|
|
DATE=$(date --iso)
|
|
LOCATION=$(dirname ${BASH_SOURCE[0]})
|
|
RESULTS=latest-excluding-addr-error.txt
|
|
{
|
|
cd $LOCATION
|
|
echo "Last run on $DATE at commit $COMMIT" | tee $RESULTS
|
|
echo "" | tee -a $RESULTS
|
|
cargo run -- -q --testsuite "../ProcessorTests/680x0/68000/v1/" -e exclude-addr | tee -a $RESULTS
|
|
}
|