blob: 965a08c6e25f29f5622c4161c42e74fdc4629ccb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# 2 tests fail in stack overflows, ignoring for now
eval "$(
declare -f check | \
sed '
s/make check/make check || true/
'
)"
# JIT fails on i486
if [ "${CARCH}" = "i486" ]; then
eval "$(
declare -f build | \
sed '
s/configure/configure --enable-jit=no/
'
)"
fi
# more and more tests failing disabling tests for now
# as tests hang build machines
unset check
|