aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/seq/seq-long-double.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/seq/seq-long-double.sh b/tests/seq/seq-long-double.sh
index 86f82d88b..eaf812d3b 100755
--- a/tests/seq/seq-long-double.sh
+++ b/tests/seq/seq-long-double.sh
@@ -40,7 +40,14 @@ a=$INTMAX_MAX
b=$INTMAX_OFLOW
seq $a $b > out || fail=1
-printf "$a\n$b\n" > exp || fail=1
+printf "$a\n$b\n" > exp || framework_failure_
+compare exp out || fail=1
+
+# Test case fixed in v9.8
+# I.e. All digit start, with non digits end
+a=18446744073709551617
+seq $a inf | head -n1 > out || fail=1
+printf "$a\n" > exp || framework_failure_
compare exp out || fail=1
Exit $fail