~svn/ubuntu/oneiric/subversion/ppa

« back to all changes in this revision

Viewing changes to tools/buildbot/slaves/i686-debian-sarge1/svncheck.sh

  • Committer: Max Bowsher
  • Date: 2012-06-27 12:25:12 UTC
  • mfrom: (44.1.46 precise)
  • Revision ID: _@maxb.eu-20120627122512-kmo8fj0lr7mlkppj
Make tree identical to precise branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
 
3
 
 
4
 
set -x
5
 
 
6
 
if test -z "$1" ; then
7
 
  echo "Missing FS_TYPE specifier (arg #1)."
8
 
  exit 1
9
 
fi
10
 
 
11
 
echo "========= mount RAM disc"
12
 
# ignore the result: if it fails, the test will just take longer...
13
 
mkdir -p subversion/tests/cmdline/svn-test-work
14
 
test -e ../mount-ramdrive && ../mount-ramdrive
15
 
 
16
 
echo "========= make check"
17
 
make check FS_TYPE=$1 CLEANUP=1 || exit $?
18
 
 
19
 
# echo "========= make check-swig-pl"
20
 
# make check-swig-pl || exit $?
21
 
 
22
 
#echo "========= make check-swig-rb"
23
 
#make check-swig-rb || exit $?
24
 
 
25
 
exit 0
 
1
#!/bin/bash
 
2
#
 
3
#
 
4
# Licensed to the Apache Software Foundation (ASF) under one
 
5
# or more contributor license agreements.  See the NOTICE file
 
6
# distributed with this work for additional information
 
7
# regarding copyright ownership.  The ASF licenses this file
 
8
# to you under the Apache License, Version 2.0 (the
 
9
# "License"); you may not use this file except in compliance
 
10
# with the License.  You may obtain a copy of the License at
 
11
#
 
12
#   http://www.apache.org/licenses/LICENSE-2.0
 
13
#
 
14
# Unless required by applicable law or agreed to in writing,
 
15
# software distributed under the License is distributed on an
 
16
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 
17
# KIND, either express or implied.  See the License for the
 
18
# specific language governing permissions and limitations
 
19
# under the License.
 
20
#
 
21
#
 
22
 
 
23
 
 
24
set -x
 
25
 
 
26
if test -z "$1" ; then
 
27
  echo "Missing FS_TYPE specifier (arg #1)."
 
28
  exit 1
 
29
fi
 
30
 
 
31
echo "========= mount RAM disc"
 
32
# ignore the result: if it fails, the test will just take longer...
 
33
mkdir -p subversion/tests/cmdline/svn-test-work
 
34
test -e ../mount-ramdrive && ../mount-ramdrive
 
35
 
 
36
echo "========= make check"
 
37
make check FS_TYPE=$1 CLEANUP=1 || exit $?
 
38
 
 
39
# echo "========= make check-swig-pl"
 
40
# make check-swig-pl || exit $?
 
41
 
 
42
#echo "========= make check-swig-rb"
 
43
#make check-swig-rb || exit $?
 
44
 
 
45
exit 0