blob: cc0457254c41966cb03c58ef0ccf17c085b3b282 (
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
|
#!/bin/bash
set -e
set -u
: ${ENABLE_MRUBY:=no}
: ${TEST_TARGET:=all}
prefix=/tmp/local
command_test_options="--reporter=mark --timeout=60"
set -x
export COLUMNS=79
retry()
{
local i=0
while ! "$@"; do
if [ $i -eq 3 ]; then
exit 1
fi
i=$((i + 1))
done
}
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
memory_fs_size=$[768 * 1024 * 1024] # 768MiB
byte_per_sector=512
n_sectors=$[${memory_fs_size} / ${byte_per_sector}]
memory_fs_device_path=$(hdid -nomount ram://${n_sectors})
newfs_hfs ${memory_fs_device_path}
mkdir -p tmp
mount -t hfs ${memory_fs_device_path} tmp
command_test_options="${command_test_options} --n-workers=2"
else
command_test_options="${command_test_options} --n-workers=4"
fi
case "${BUILD_TOOL}" in
autotools)
case "${TEST_TARGET}" in
command)
test/command/run-test.sh ${command_test_options}
;;
command-http)
retry test/command/run-test.sh ${command_test_options} \
--interface http
;;
command-httpd)
mkdir -p ${prefix}/var/log/groonga/httpd
retry test/command/run-test.sh ${command_test_options} \
--testee groonga-httpd
;;
*)
test/unit/run-test.sh -v v
test/command/run-test.sh ${command_test_options}
if [ "${ENABLE_MRUBY}" = "yes" ]; then
test/mruby/run-test.rb
test/command_line/run-test.rb
fi
retry test/command/run-test.sh ${command_test_options} \
--interface http
mkdir -p ${prefix}/var/log/groonga/httpd
retry test/command/run-test.sh ${command_test_options} \
--testee groonga-httpd
;;
esac
;;
cmake)
test/command/run-test.sh ${command_test_options}
;;
esac
|