mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-16 17:12:24 -07:00
17 lines
346 B
Bash
Executable File
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
|