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