2 # This file is part of BeRTOS.
4 # Bertos is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 # As a special exception, you may use this file as part of a free software
19 # library without restriction. Specifically, if other files instantiate
20 # templates or use macros or inline functions from this file, or you compile
21 # this file and link it with other files to produce an executable, this
22 # file does not by itself cause the resulting executable to be covered by
23 # the GNU General Public License. This exception does not however
24 # invalidate any other reasons why the executable file might be covered by
25 # the GNU General Public License.
27 # Copyright 2008 Develer S.r.l. (http://www.develer.com/)
29 # Nighlty test for BeRTOS.
31 # Author Daniele Basile <asterix@develer.com>
33 #Makefile test directory
37 BERTOS_DIR_BAK="bertos.saved"
40 printf "Starting nightlytest..\n"
41 cp -R $BERTOS_DIR $BERTOS_DIR_BAK || exit 1
43 #Strip away TODOs and FIXME
44 find $BERTOS_DIR -name "*.[ch]" | xargs perl -p -i -e 's/^\s*#warning\s*(TODO|FIXME).*//g;'
47 #Cpu target that we want to test
52 ${TEST_DIR}/gen_mk_src.sh $i
55 #Clean and launch make on all
56 make -f ${MAKEFILE_TEST_DIR}/Makefile.test clean
57 make -f ${MAKEFILE_TEST_DIR}/Makefile.test
59 #Restore original sources
60 if [ -d $BERTOS_DIR_BAK ] ; then
61 printf "Exiting from nightly..\n"
63 mv $BERTOS_DIR_BAK $BERTOS_DIR
65 printf "Unable to restore backup copy\n"