summaryrefslogtreecommitdiff
path: root/tools/buildbot/slaves/svn-x64-macosx/svncheck.sh
blob: 9465d3f2f69533f76769dd424e378ad52299a5fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/bin/bash

#  Licensed to the Apache Software Foundation (ASF) under one
#  or more contributor license agreements.  See the NOTICE file
#  distributed with this work for additional information
#  regarding copyright ownership.  The ASF licenses this file
#  to you under the Apache License, Version 2.0 (the
#  "License"); you may not use this file except in compliance
#  with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
#  Unless required by applicable law or agreed to in writing,
#  software distributed under the License is distributed on an
#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
#  KIND, either express or implied.  See the License for the
#  specific language governing permissions and limitations
#  under the License.


run_tests() {
    ra="$1"
    fs="$2"
    ok=true

    case "${ra}" in
        local) check=check;             more=;;
        svn)   check=svnserveautocheck; more="SKIP_C_TESTS=1";;
        dav)   check=davautocheck;      more="SKIP_C_TESTS=1";
               if [ "${fs}" == "bdb" ]; then
                   more="${more} APACHE_MPM=prefork"
               else
                   more="${more} APACHE_MPM=event"
               fi;;
        *)     exit 1;;
    esac

    ${allow_remote} && more="${more} ALLOW_REMOTE_HTTP_CONNECTION=1"

    echo "============ make check ${ra}+${fs}"
    cd ${absbld}
    make ${check} FS_TYPE=${fs} PARALLEL=${SVNBB_PARALLEL} CLEANUP=1 ${more} || ok=false

    # Move any log files to the buildbot work directory
    test -f tests.log && mv tests.log "${abssrc}/.test-logs/tests-${ra}-${fs}.log"
    test -f fails.log && mv fails.log "${abssrc}/.test-logs/fails-${ra}-${fs}.log"

    # Remove the test working directory to make space on the RAM disk
    # for more tests.
    rm -fr subversion/tests/cmdline/svn-test-work

    ${ok} || exit 1
}

check_tests() {
    ra="$1"

    ${check_fsfs} && run_tests ${ra} fsfs
    ${check_fsfs_v6} && run_tests ${ra} fsfs-v6
    ${check_fsfs_v4} && run_tests ${ra} fsfs-v4
    ${check_bdb} && run_tests ${ra} bdb
    ${check_fsx} && run_tests ${ra} fsx
}


set -x

scripts=$(cd $(dirname "$0") && pwd)

. ${scripts}/setenv.sh

# Parse arguments to find out which tests we should run
use_python3=false
check_local=false
check_svn=false
check_dav=false
check_fsfs=false
check_fsfs_v6=false
check_fsfs_v4=false
check_fsx=false
check_bdb=false
allow_remote=false

while [ ! -z "$1" ]; do
    case "$1" in
        python3) use_python3=true;;
        local)   check_local=true;;
        svn)     check_svn=true;;
        dav)     check_dav=true;;
        fsfs)    check_fsfs=true;;
        fsfs-v6) check_fsfs_v6=true;;
        fsfs-v4) check_fsfs_v4=true;;
        fsx)     check_fsx=true;;
        bdb)     check_bdb=true;;
        remote)  allow_remote=true;;
        *)       exit 1;;
    esac
    shift
done

${use_python3} && test -n "${SVNBB_PYTHON3ENV}" && . ${SVNBB_PYTHON3ENV}/bin/activate

${check_local} && check_tests local
${check_svn} && check_tests svn
${check_dav} && check_tests dav

exit 0