mirror of
https://github.com/transistorfet/moa.git
synced 2024-11-19 05:31:05 +00:00
eea8840483
There are still some failures on the SBCD, but the logic is identical to other emulator's calculations, but the test case doesn't seem to be the way it should behave, so I'll leave it for now
12 lines
363 B
Bash
Executable File
12 lines
363 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/uncompressed/" -e exclude-addr | tee -a $RESULTS
|
|
}
|