Merge pull request #359 from bjh21/bjh21-unterminated-strings
[jackhill/mal.git] / .travis_test.sh
1 #!/bin/bash
2
3 set -ex
4
5 ACTION=${1}
6 IMPL=${2}
7
8 # Environment variable configuration
9 BUILD_IMPL=${BUILD_IMPL:-${IMPL}}
10 TEST_OPTS="${TEST_OPTS} --debug-file ../${ACTION}.err"
11
12 if [ "${DO_SELF_HOST}" ]; then
13 MAL_IMPL=${IMPL}
14 IMPL=mal
15 fi
16 if [ "${DO_HARD}" ]; then
17 TEST_OPTS="${TEST_OPTS} --hard"
18 fi
19
20 echo "ACTION: ${ACTION}"
21 echo "IMPL: ${IMPL}"
22 echo "BUILD_IMPL: ${BUILD_IMPL}"
23 echo "MAL_IMPL: ${MAL_IMPL}"
24
25 if [ "${NO_PERF}" -a "${ACTION}" = "perf" ]; then
26 echo "Skipping perf test"
27 exit 0
28 fi
29 if [ "${NO_SELF_HOST}" -a "${DO_SELF_HOST}" ]; then
30 echo "Skipping ${ACTION} of ${MAL_IMPL} self-host"
31 exit 0
32 fi
33 if [ "${NO_SELF_HOST_PERF}" -a "${DO_SELF_HOST}" -a "${ACTION}" = "perf" ]; then
34 echo "Skipping only perf test for ${MAL_IMPL} self-host"
35 exit 0
36 fi
37
38 mode_var=${MAL_IMPL:-${IMPL}}_MODE
39 mode_val=${!mode_var}
40
41 MAKE="make ${mode_val:+${mode_var}=${mode_val}}"
42
43 # If NO_DOCKER is blank then launch use a docker image, otherwise use
44 # the Travis image/tools directly.
45 if [ -z "${NO_DOCKER}" ]; then
46 img_impl=$(echo "${MAL_IMPL:-${IMPL}}" | tr '[:upper:]' '[:lower:]')
47 # We could just use make DOCKERIZE=1 instead but that does add
48 # non-trivial startup overhead for each step.
49 MAKE="docker run -it -u $(id -u) -v `pwd`:/mal kanaka/mal-test-${img_impl%%-mal} ${MAKE}"
50 fi
51
52 case "${ACTION}" in
53 build)
54 # rpython often fails on step9 in compute_vars_longevity
55 # so build step9, then continue wit the full build
56 if [ "${BUILD_IMPL}" = "rpython" ]; then
57 ${MAKE} -C "${BUILD_IMPL}" step9_try || true
58 fi
59 ${MAKE} -C ${BUILD_IMPL}
60 ;;
61 test|perf)
62 [ "${ACTION}" = "perf" ] && STEP=
63 if ! ${MAKE} TEST_OPTS="${TEST_OPTS}" \
64 ${MAL_IMPL:+MAL_IMPL=${MAL_IMPL}} \
65 ${REGRESS:+REGRESS=${REGRESS}} \
66 ${HARD:+HARD=${HARD}} \
67 ${DEFERRABLE:+DEFERRABLE=${DEFERRABLE}} \
68 ${OPTIONAL:+OPTIONAL=${OPTIONAL}} \
69 ${ACTION}^${IMPL}${STEP:+^${STEP}}; then
70 # print debug-file on error
71 cat ${ACTION}.err
72 false
73 fi
74 ;;
75 esac