summaryrefslogtreecommitdiff
path: root/src/test/run-tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-tests')
-rwxr-xr-xsrc/test/run-tests27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/test/run-tests b/src/test/run-tests
new file mode 100755
index 00000000..4edecf1a
--- /dev/null
+++ b/src/test/run-tests
@@ -0,0 +1,27 @@
+#!/bin/bash
+
+DIR=~/misc/rockets/flights
+
+expect_baro=2
+expect_full=5
+
+bad_baro=0
+bad_full=0
+while read flight description; do
+ if ./ao_flight_test_baro -s -i "$description" $DIR/$flight; then
+ :
+ else
+ : $((bad_baro++))
+ fi
+ if ./ao_flight_test -s -i "$description" $DIR/$flight; then
+ :
+ else
+ : $((bad_full++))
+ fi
+done < test-flights
+echo baro errors $bad_baro expected $expect_baro
+echo full errors $bad_full expected $expect_full
+: $((miss_baro = bad_baro > expect_baro ? bad_baro - expect_baro : expect_baro - bad_baro))
+: $((miss_full = bad_full > expect_full ? bad_full - expect_full : expect_full - bad_full))
+: $((miss = miss_baro + miss_full))
+exit $miss \ No newline at end of file