diff options
author | dgp <dgp@users.sourceforge.net> | 2011-09-01 17:13:59 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2011-09-01 17:13:59 (GMT) |
commit | c639e72c38ffbe038a79a58991d4c5bb3e027a6f (patch) | |
tree | 958809c8acbbd29e5562804b7f60bf29c9d3e7b3 /tests/scan.test | |
parent | 2cd90e85bdaacea5b5fcf05011e14b92d78b5b12 (diff) | |
download | tcl-c639e72c38ffbe038a79a58991d4c5bb3e027a6f.zip tcl-c639e72c38ffbe038a79a58991d4c5bb3e027a6f.tar.gz tcl-c639e72c38ffbe038a79a58991d4c5bb3e027a6f.tar.bz2 |
3402540 Corrections to TclParseNumber() to make it reject invalid Nan(Hex)
[scan Inf %g] is portable; remove constraint.
Diffstat (limited to 'tests/scan.test')
-rw-r--r-- | tests/scan.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/scan.test b/tests/scan.test index b37ce0c..34351e0 100644 --- a/tests/scan.test +++ b/tests/scan.test @@ -749,11 +749,11 @@ testConstraint ieeeFloatingPoint [testIEEE] # scan infinities - not working -test scan-14.1 {infinity} ieeeFloatingPoint { +test scan-14.1 {infinity} { scan Inf %g d set d } Inf -test scan-14.2 {infinity} ieeeFloatingPoint { +test scan-14.2 {infinity} { scan -Inf %g d set d } -Inf |