Rulesave saves trade.type and trade.bonus correctly.
[freeciv.git] / tests / all_tests.sh
blob88944417b7d078b2fb7f29f807f0b0c538f1b376
1 #!/bin/bash
3 # define the log file
4 DATE=`date +%Y%m%d%H%M%S`
5 LOGFILE="./all_tests-${DATE}.log"
7 # define the scripts to be run
8 SCRIPTS="
9 check_macros.sh
10 copyright.sh
11 fcintl.sh
12 header_guard.sh
13 va_list.sh
16 # create the logfile
17 touch $LOGFILE
19 # run all scripts
20 for II in $SCRIPTS; do
21 echo -e "running '$II' ...\n" | tee -a $LOGFILE
22 ./$II ../ | tee -a $LOGFILE
23 echo -e "\n\n" | tee -a $LOGFILE
24 done