diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2015-04-03 15:37:50 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2015-04-03 15:37:50 +0000 |
commit | 7ab3200c082eb6e31825d18611ddf6a396821748 (patch) | |
tree | 66fbcbf3aca40e2ee3ef59c6426b0e27fe3ac0a7 /regress/usr.bin/sort/stests | |
parent | bc3087c72afea4da27dc2816e0de4606381f6375 (diff) |
We don't have the precision to distinguish between .99999999999999999999
and 1.0.
Diffstat (limited to 'regress/usr.bin/sort/stests')
-rw-r--r-- | regress/usr.bin/sort/stests | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/usr.bin/sort/stests b/regress/usr.bin/sort/stests index a574735c85c..1d0fecccb14 100644 --- a/regress/usr.bin/sort/stests +++ b/regress/usr.bin/sort/stests @@ -1,5 +1,5 @@ #!/bin/sh - -# $OpenBSD: stests,v 1.12 2015/03/31 16:31:42 millert Exp $ +# $OpenBSD: stests,v 1.13 2015/04/03 15:37:49 millert Exp $ # from: @(#)stests 8.1 (Berkeley) 6/6/93 #Latest version. My sort passes all tests because I wrote it. @@ -798,14 +798,14 @@ $g xsort "" -g #--------------------------------------------------------------- TEST=34; echo $TEST # -g wide operands cat <<! >in -.99999999999999999999 +.9999999999999999 099999999999999999999e-21 099999999999999999999e-19 .1e1 ! cat <<! >out 099999999999999999999e-21 -.99999999999999999999 +.9999999999999999 .1e1 099999999999999999999e-19 ! @@ -814,7 +814,7 @@ $g xsort A -g cat <<! >out .1e1 -.99999999999999999999 +.9999999999999999 099999999999999999999e-19 099999999999999999999e-21 ! |