aboutsummaryrefslogtreecommitdiff
path: root/tests/run_tests
diff options
context:
space:
mode:
authorMartin Baƙinka <marun1@email.cz>2021-04-29 12:38:21 +0200
committerGitHub <noreply@github.com>2021-04-29 13:38:21 +0300
commit4ea8f3ff12da61a5ceba690bf1e39d9385b42880 (patch)
tree5e23c194e7901019be6f6d2fa944ec3e6d8d53e5 /tests/run_tests
parent799ecab03d2cfec27ab1d2ecebcd4775d52e299c (diff)
downloadlibfixmath-4ea8f3ff12da61a5ceba690bf1e39d9385b42880.tar.gz
Unit testing with cmake (#31)
* testing using ctest * emove old testing script * added github workflow CI * updated CI
Diffstat (limited to 'tests/run_tests')
-rwxr-xr-xtests/run_tests10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/run_tests b/tests/run_tests
deleted file mode 100755
index 4b16a6e..0000000
--- a/tests/run_tests
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/env bash
-for i in $(ls -1 tests_*)
-do
- ./$i;
- ret=$?;
-if [ $ret -ne 0 ];
-then
- exit $ret;
-fi
-done