mirror of
https://github.com/transistorfet/moa.git
synced 2024-11-19 05:31:05 +00:00
12 lines
326 B
Bash
Executable File
12 lines
326 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 "../ProcessorTests/680x0/68000/uncompressed/" | tee -a $RESULTS
|
|
}
|