2019-09-30 03:36:01 +03:00
|
|
|
#!/bin/sh
|
2019-10-09 11:36:55 +03:00
|
|
|
cd "${0%/*}"
|
|
|
|
SKU=${1:-release}
|
|
|
|
echo Building and running $SKU tests...
|
|
|
|
./build.sh ${SKU}
|
2019-09-30 03:55:27 +03:00
|
|
|
# Fail on test errors
|
|
|
|
set -e
|
2019-09-30 03:36:01 +03:00
|
|
|
cd out
|
|
|
|
./tests/functests/FuncTests
|
|
|
|
./tests/unittests/UnitTests
|