Files
metadesk/bin/run_tests.sh
T

20 lines
386 B
Bash
Executable File

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