test v4-0-test tree in the build-farm instead of the svn tree
[build-farm.git] / generic.fns
1 per_run_hook
2
3 global_lock
4
5 system=`uname`
6
7 for compiler in gcc cc icc; do
8
9   # arrgh, "which" gives no err code on solaris
10   path=`which $compiler`
11   if [ -x "$path" ]; then
12
13     if $compiler -v 2>&1 | grep gcc.version > /dev/null; then
14        isgcc=1
15        CFLAGS="-Wall"
16        export CFLAGS
17     else
18        CFLAGS=""
19        export CFLAGS
20        isgcc=0
21     fi
22     if [ $compiler = gcc -o $isgcc = 0 ]; then
23       . common.fns
24       test_tree lorikeet-heimdal . $compiler
25
26       # only attempt samba_4_0_test if we have perl
27       if which perl > /dev/null; then
28         test_tree samba_4_0_test source $compiler
29       fi
30
31       # only attempt samba-gtk if we have perl and gtk+-2.0
32       if which perl > /dev/null && which pkg-config > /dev/null && pkg-config --exists gtk+-2.0; then
33         test_tree samba-gtk . $compiler
34       fi
35
36       # only attempt 'make test' in samba3 if we have perl
37       if which perl > /dev/null; then
38         test_tree samba_3_2_test source $compiler configure config_log build install test
39       else
40         test_tree samba_3_2_test source $compiler configure config_log build install
41       fi
42
43       # by default build ppp only on SunOS or Linux systems
44       if [ "$system" = Linux -o "$system" = SunOS ]; then
45          test_tree ppp . $compiler
46       fi
47     fi
48   fi
49 done
50
51 # only attempt pidl if we have perl
52 if which perl > /dev/null; then
53   test_tree pidl . cc build test
54 fi
55
56 global_unlock