summaryrefslogtreecommitdiffstats
path: root/tests/testsuite.at
blob: 81f2b2f6928da162e54ee0465fc23006ca82051c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
AT_INIT
AT_COLOR_TESTS

AT_SETUP([Check files are generated correctly])
AT_CHECK([file_list=$abs_top_builddir/$TEST_GEN_FILES_LIST
test -f "$file_list" || { echo "no such file '$file_list'" ; exit 1 ; }

pattern='@[[a-zA-Z0-9_]]*@'

while read file; do
    file=$abs_top_builddir/$file
    grep $pattern $file && echo "file $file is incomplete" && exit 1
done < $file_list

exit 0
])
AT_CLEANUP