repo.or.cz
/
freeciv.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Rulesave saves trade.type and trade.bonus correctly.
[freeciv.git]
/
tests
/
all_tests.sh
blob
88944417b7d078b2fb7f29f807f0b0c538f1b376
1
#!/bin/bash
2
3
# define the log file
4
DATE
=
`date +%Y%m%d%H%M%S`
5
LOGFILE
=
"./all_tests-
${DATE}
.log"
6
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
14
"
15
16
# create the logfile
17
touch
$LOGFILE
18
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