Files
metadesk/bin/run_tests.sh
T
2021-09-07 18:16:57 +02:00

17 lines
346 B
Bash
Executable File

#!/bin/bash
###### Get Paths ##############################################################
og_path=$PWD
cd "$(dirname "$0")"
cd ..
echo ~~~ Running Sanity Tests ~~~
mkdir -p build
cd build
./sanity_tests.exe
./unicode_test.exe
./expression_tests.exe
###### Restore Path ###########################################################
cd $og_path