blob: f31744850dddb579e983c632f909582d53b86686 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#!/bin/sh
VERSION=1.0
PRODUCT=TeleGPS
BASE=`echo $PRODUCT | tr 'A-Z' 'a-z'`
echo "$PRODUCT-v$VERSION Test Program"
echo "Copyright 2014 by Bdale Garbee. Released under GPL v2"
echo
echo "Expectations:"
echo "\t$PRODUCT v$VERSION powered from USB"
echo
ret=1
ao-list | while read product serial dev; do
case "$product" in
"$PRODUCT-v$VERSION")
echo "Testing $product $serial $dev"
FLASHSIZE=2097152
echo "Testing flash"
./test-flash "$dev" "$FLASHSIZE"
case $? in
0)
;;
*)
echo "failed"
exit 1
esac
echo "Testing GPS"
./test-gps "$dev"
case $? in
0)
;;
*)
echo "failed"
exit 1
esac
echo "$PRODUCT-v$VERSION" serial "$serial" is ready to ship
ret=0
;;
*)
echo "Skipping $product $serial $dev"
;;
esac
done
|