mirror of
https://github.com/transistorfet/moa.git
synced 2024-11-19 21:31:30 +00:00
12 lines
363 B
Bash
12 lines
363 B
Bash
|
#!/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
|
||
|
}
|