AT_SETUP([Checking for present date stamp in .dox files]) AT_KEYWORDS([CodeCheck dox date_in_dox]) ok="" echo `pwd` echo "${#ok[*]} are ok to not contain date in .dox: ${ok[*]}." liste=`find ${abs_top_srcdir}/src -name '*.dox'` for file in $liste do # check whether its one of the excluded ones found=0 for item in $ok do if test "$item" == "`basename $file`" then found=1 break fi done # if not, check whether it contains the include if test $found -eq 0 then AT_CHECK([egrep -q '\date [[0-9]]{4}-[[0-2]][[0-9]]-[[0-3]][[0-9]]' $file], 0, [ignore], [ignore], [echo "Could not find date stamp in $file."]) fi done AT_CLEANUP