blob: dff1fac958dd9df8f99360718996c8822b8f60d2 (
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
|
# first, we replace the hardcoded min/max of int
eval "$(
declare -f check | \
sed '
3 a find . -type f -exec sed -i '"'"'s/922337203685477580\\([78]\\)/214748364\\1/g; s/9\\.22337203685477580\\([78]\\)e18/2.14748364\\1e9/g'"'"' {} \\;
s/runhaskell Setup test/_check_diff \\0/
'
)"
# and then we make the check insensitive to changes of order
_check_diff() {
if ! "$@" > check.log; then
if ! diff -u <(
grep '^\s*expected:' check.log | \
sed 's/^[^:]*://' | \
tr '{},' '\n' | \
sort
) <(
grep '^\s*but got:' check.log | \
sed 's/^[^:]*://' | \
tr '{},' '\n' | \
sort
); then
cat check.log
return 1
fi
fi
}
|