mu/run_one_test

25 lines
774 B
Plaintext
Raw Normal View History

#!/usr/bin/env zsh
# Either run the test with the given name, or rerun the most recently run test.
2019-06-12 06:54:05 +00:00
# Intended to be called from within Vim. Check out the vimrc.vim file.
2019-09-05 00:35:37 +00:00
# Unfortunately this only works with Linux at the moment. Some compiler passes
# take too long to run in emulated mode.
if [[ $2 == 'test-'* ]]
then
2019-07-04 06:39:51 +00:00
TEST_NAME=$2 envsubst '$TEST_NAME' < run_one_test.subx > /tmp/run_one_test.subx
FILES=$(ls [0-9]*.subx apps/subx-params.subx $1 |sort |uniq)
2019-07-04 06:39:51 +00:00
echo $FILES > /tmp/last_run_files
elif [[ -e /tmp/last_run_files ]]
then
2019-08-25 21:56:20 +00:00
FILES=$(cat /tmp/last_run_files)
else
echo "no test found"
exit 0 # don't open trace
fi
set -e
2020-01-10 04:53:02 +00:00
./translate_subx_debug init.linux $(echo $FILES) /tmp/run_one_test.subx
echo running
CFLAGS=$CFLAGS ./bootstrap --trace run a.elf