]> cloudbase.mooo.com Git - irmp.git/blob - IR-Data/test-suite.sh
Version 1.3.0: added Grundig protocol, fixed auto repetition detection for SIRCS...
[irmp.git] / IR-Data / test-suite.sh
1 #! /bin/sh
2 for j in \
3 DK_Digital.txt \
4 Grundig_TP715.txt \
5 Grundig_TP715_SatTV.txt \
6 Grundig_TP715_Video.txt \
7 Matsushita.txt \
8 Panasonic-Blue-Ray.txt \
9 RC5-Taste.txt \
10 Samsung_DVD_Rec_00062C.txt \
11 Samsung_TV.txt \
12 Sony-RM-S-310.txt \
13 sony-rm-s311.txt \
14 Sony-RM-U305C.txt \
15 Sony-RMT-D142P-DVD.txt \
16 Sony-RMT-V406.txt \
17 Sony_Bravia_RM-ED0009.txt \
18 Sony_Bravia_RM-ED0009_new.txt \
19 Yamaha-RAV388.txt \
20 apple.txt \
21 bo_beolink1000-10kHz.txt \
22 denon.txt \
23 elta_radio.txt \
24 nec-repetition.txt \
25 nec.txt \
26 nubert-subwoofer.txt \
27 orion_vcr_07660BM070.txt \
28 panasonic-scan.txt \
29 rc5.txt \
30 rc5x-79.txt \
31 rc5x.txt \
32 rc6-hold.txt \
33 rc6.txt \
34 sharp-denon.txt \
35 sharp-denon2.txt
36 do
37 echo "testing $j ..."
38 if ../irmp < $j | grep -q error
39 then
40 ../irmp < $j | grep error
41 echo "test failed"
42 exit 1
43 fi
44 done
45 echo "all tests successful"
46 exit 0