blob: 60148bdbdd8c7c65966d9c55fe5f1df1254dc92c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# on i686 some tests fail with segfault
# test_replace_overflow (present in test_bytes, test_str, test_string,
# test_unicode, test_userstring) segfault on i686
# test_bigrepeat (present in test_tuple) segfault on i686
eval "$(
declare -f build | \
sed '
/export OPT=/ s/"$/ -fwrapv"/
'
declare -f check | \
sed '
/xvfb-run/ s/-x test_idle/-x test_idle test_bytes test_str test_string test_unicode test_userstring test_tuple/
'
)"
|