Files
metadesk/bin/run_tests.sh
T
Mārtiņš Možeiko fdab8bd6b2 add github actions
2021-11-14 18:13:28 -08:00

22 lines
404 B
Bash
Executable File

#!/bin/bash
set -eo pipefail
###### 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