about summary refs log blame commit diff stats
path: root/subx/run_one_test.sh
blob: ded3e6e5cad171942c9cf0bf44808905d0f6a728 (plain) (tree)
1
2
3
4
5
6
7
8
9
                  
                                                                               
                                                                      


                       

                                                                                 
    


                            
 
      


                                                                                         
 
                                   
#!/usr/bin/env zsh
# Either run the test with the given name, or rerun the most recently run test.
# Intended to be called from within Vim. Check out the vimrc.vim file.

if [[ $2 == 'test-'* ]]
then
  TEST_NAME=$2 envsubst '$TEST_NAME' < run_one_test.subx > /tmp/run_one_test.subx
elif [[ ! -e /tmp/run_one_test.subx ]]
then
  echo "no test found"
  exit 0  # don't open trace
fi

set -e
FILES=$(ls [0-9]*.subx apps/subx-common.subx $1 |sort |uniq)
                                      # turn newlines into spaces
CFLAGS=$CFLAGS subx --debug translate $(echo $FILES) /tmp/run_one_test.subx -o /tmp/a.elf

subx --debug --trace run /tmp/a.elf