Make standalone listen only on localhost and use local version of common.css
[build-farm.git] / buildsamba02.fns
1 per_run_hook
2
3 global_lock
4
5 #. install_python.fns
6
7 action_test() {
8         echo "PWD: "`pwd`
9         ls -lrta ../../
10         case $tree in
11                 samba_4*)
12                 ../buildtools/bin/waf test
13                         ;;
14                 *)
15                         do_make test
16                         ;;
17         esac
18     totalstatus=$?
19
20     # if we produced a test summary then show it
21     [ -f st/summary ] && {
22         echo "TEST SUMMARY"
23         cat st/summary
24     }
25
26     return "$totalstatus"
27 }
28
29 for compiler in gcc;  do
30         . common.fns
31
32         test_tree samba_4_0_test source4 $compiler
33
34         test_tree samba_3_current source $compiler
35         test_tree samba_3_next source $compiler
36         test_tree samba_3_master source $compiler
37 done
38
39 global_unlock