# # MoleCuilder - creates and alters molecular systems # Copyright (C) 2008-2012 University of Bonn # # 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 Action in GlobalListOfActions]) AT_KEYWORDS([CodeCheck action globallistofactions GlobalListOfActions_hpp]) ok="NoAction" echo "Checking in ${abs_top_srcdir}/src/Actions/" liste=`find ${abs_top_srcdir}/src/Actions/ -name '[[A-Z]]*Action.def'` for filename in $liste do category=`grep CATEGORY $filename | grep -v undef | sed 's/#define CATEGORY//g' | tr -d \ ` action=`grep ACTIONNAME $filename | sed 's/#define ACTIONNAME//g' | tr -d \ ` actionname=$category$action echo -n "$actionname: " found=0 for item in $ok do if test x"$item" = x"$actionname" then found=1 break fi done # if not, check whether it contains the include if test $found -eq 0 then AT_CHECK([grep "${actionname}" ${abs_top_srcdir}/src/Actions/GlobalListOfActions.hpp], 0, [stdout], [ignore]) else echo "excluded." fi done echo "fordone" AT_CLEANUP