# # MoleCuilder - creates and alters molecular systems # Copyright (C) 2014 Frederik Heber # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # AT_SETUP([Checking for presence of every regression testsuite in Makefile]) AT_KEYWORDS([CodeCheck testsuite Makefile]) ok="" okdir="" echo `pwd` echo "${#ok[*]} are ok to not contain config.h: ${ok[*]}." liste=`find ${abs_top_srcdir}/tests/regression -name '*.at'` for file in $liste do # check whether its one of the excluded ones found=0 for item in $okdir do if test "`dirname $file`" == "${abs_top_srcdir}/tests/regression/$item" then found=1 break fi done # skip other specific files from 3rd party source or created ones for item in $ok do if test "$item" == "`basename $file`" then found=1 break fi done # if not, check whether it contains the include filename=`echo $file | sed -e "s#${abs_top_srcdir}/tests/regression/*##g"` if test $found -eq 0 then AT_CHECK([egrep "$filename" ${abs_top_srcdir}/tests/regression/Makefile.am], 0, [ignore], [ignore], [echo "Could not find testsuite $filename in tests/regression/Makefile.am."]) fi done AT_CLEANUP