]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/setup
Merge branch 'master' into basejobv3
[bacula/bacula] / regress / scripts / setup
1 #!/bin/sh
2 #
3 # Script to setup running Bacula regression tests
4 #
5
6 check_exit_code()
7 {
8    if [ $? != 0 ] ; then
9       echo "Bad exit code giving up"
10       exit 1 
11    fi
12 }
13
14 . ./config
15
16 cwd=`pwd`
17 if [ ! -d ${BACULA_SOURCE} ] ; then
18    echo "The BACULA_SOURCE environment variable must be a Bacula release directory, but is not."
19    echo " "
20    exit 1
21 fi
22
23 # we build and setup binaries to the $cwd/bin directory not $bin
24 rm -rf build bin
25 # Copy new source
26 echo "Copying source from ${BACULA_SOURCE}"
27 cp -rp ${BACULA_SOURCE} build
28 git show HEAD | grep -m 1 commit | awk '{print $2}' > build/git-version
29 scripts/create_sed
30 # In default bacula-dir.conf.in, change default file 
31 # to backup to be build directory
32 echo "s%File = @sbindir@%File = @BUILD_DIR@%g" >tmp/t$$
33 sed -f tmp/t$$ build/src/dird/bacula-dir.conf.in >tmp/o$$
34 cp tmp/o$$ build/src/dird/bacula-dir.conf.in
35 rm -f tmp/t$$ tmp/o$$
36 # remove unneeded directories
37 rm -rf build/txt build/src/testprogs
38 sed -f tmp/sed_tmp scripts/regress-config.in >scripts/regress-config
39 chmod 755 scripts/regress-config
40 cp scripts/regress-config build
41 cd build
42 rm -f Makefile config.cache
43 # Run Bacula configuration, make, install
44 ./regress-config ${cwd}
45 check_exit_code
46 # Cleanup any build in source
47 make clean
48 make -j3
49 check_exit_code
50 make install
51 rm -rf examples patches
52 check_exit_code
53 # eliminate non-essential directories to reduce
54 #   size.  Otherwise regress run too long
55 rm -rf src/win32 examples patches
56 # get all tools -- especially testls
57 cd src/tools
58 make installall
59 check_exit_code
60
61 cd ${cwd}
62 bin/bacula stop
63
64 mkdir -p working
65 cd bin
66 echo "Running database creation scripts"
67 ./create_bacula_database
68 ./drop_bacula_tables
69 ./make_bacula_tables
70 ./grant_bacula_privileges
71 cd ${cwd}
72 # Start and stop Bacula to ensure conf files are OK
73 bin/bacula start
74 bin/bacula stop
75 #
76 # Save Bacula default conf files for later use
77 #
78 cp -f bin/*.conf scripts