X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Ftest%2Frun-one;h=8fa0787cd9c9ab71ace44e2e6e94730c02efa73e;hb=bc3610d8cecbfed40c62d4dcb93fc9a4d2a7c9e3;hp=7d0f95aeda7c032283ba0959849dcb8c0446f2c4;hpb=43a94380032300a2e33e1faa1efe93e858e0a2cf;p=fw%2Faltos diff --git a/src/test/run-one b/src/test/run-one index 7d0f95ae..8fa0787c 100755 --- a/src/test/run-one +++ b/src/test/run-one @@ -1,10 +1,20 @@ #!/bin/sh +DIR=~/misc/rockets/flights + for i in "$@"; do -./ao_flight_test "$i" > run-out.full -./ao_flight_test_baro "$i" > run-out.baro +case "$i" in + */*) + file="$i" + ;; + *) + file="$DIR/$i" + ;; +esac +./ao_flight_test "$file" > run-out.full +./ao_flight_test_baro "$file" > run-out.baro -#./ao_flight_test_accel "$i" > run-out.accel +#./ao_flight_test_accel "$file" > run-out.accel #"run-out.accel" using 1:9 with lines lt 4 axes x1y1 title "accel height",\ #"run-out.accel" using 1:11 with lines lt 4 axes x1y2 title "accel speed",\ #"run-out.accel" using 1:13 with lines lt 4 axes x1y2 title "accel accel",\