mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-13 07:52:22 -07:00
22 lines
404 B
Bash
Executable File
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
|