summaryrefslogtreecommitdiff
path: root/build_and_test.sh
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2024-01-14 08:28:13 +0100
committerMitya Selivanov <automainint@guattari.tech>2024-01-14 08:28:13 +0100
commit6337eb74d3d9028640fdffa0a0e39735a4e3ba93 (patch)
tree06a271fe04731d7ec0c546a82d3f4ec765117f3a /build_and_test.sh
parent84908dbff43e195b9f106a98feba162f814af2c5 (diff)
downloadkit-6337eb74d3d9028640fdffa0a0e39735a4e3ba93.zip
Short type names; Rework input buffer
Diffstat (limited to 'build_and_test.sh')
-rwxr-xr-xbuild_and_test.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/build_and_test.sh b/build_and_test.sh
index 66ba8d8..46ed36a 100755
--- a/build_and_test.sh
+++ b/build_and_test.sh
@@ -226,10 +226,6 @@ if [ $? -ne 0 ]; then
exit 1
fi
-if [ $SKIP_TESTS -ne 0 ] || [ "$COMPILE" = "emcc" ]; then
- exit 0
-fi
-
echo "Build test suite"
$COMPILE $FLAGS \
$FLAG_EXE"$FOLDER/test_suite$EXE_POSTFIX" \
@@ -285,6 +281,10 @@ if [ $? -ne 0 ]; then
exit 1
fi
+if [ $SKIP_TESTS -ne 0 ] || [ "$COMPILE" = "emcc" ]; then
+ exit 0
+fi
+
echo "Run tests"
echo ""