summaryrefslogtreecommitdiffstats
path: root/tests/scan.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2017-04-12 13:14:38 (GMT)
committerdgp <dgp@users.sourceforge.net>2017-04-12 13:14:38 (GMT)
commitbc97ae8a02bb8363f85b25501b9aa125c5b344cd (patch)
treee4149c73b615c2886e35455ee241acb660602cf9 /tests/scan.test
parent155377a13fc942edef1524383465f2aa0efd92c2 (diff)
downloadtcl-bc97ae8a02bb8363f85b25501b9aa125c5b344cd.zip
tcl-bc97ae8a02bb8363f85b25501b9aa125c5b344cd.tar.gz
tcl-bc97ae8a02bb8363f85b25501b9aa125c5b344cd.tar.bz2
Revert recent commit [80252e0aed]. TIP 237 is clear that %llu is invalid.
Diffstat (limited to 'tests/scan.test')
-rw-r--r--tests/scan.test13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/scan.test b/tests/scan.test
index 8ddb595..7540c9c 100644
--- a/tests/scan.test
+++ b/tests/scan.test
@@ -541,19 +541,6 @@ test scan-5.15 {Bug be003d570f} {
test scan-5.16 {Bug be003d570f} {
scan 0x40 %b
} 0
-test scan-5.17 {bigint scanning} -setup {
- set a {}; set b {}; set c {}; set d {}
-} -body {
- list [scan "207698809136909011942886895,207698809136909011942886895,abcdef0123456789abcdef,125715736004432126361152746757" \
- %llu,%lld,%llx,%llo a b c d] $a $b $c $d
-} -result {4 207698809136909011942886895 207698809136909011942886895 207698809136909011942886895 207698809136909011942886895}
-test scan-5.18 {bigint scanning underflow} -setup {
- set a {};
-} -body {
- list [scan "-207698809136909011942886895" \
- %llu a] $a
-} -returnCodes 1 -result {unsigned bignum scans are invalid}
-
test scan-6.1 {floating-point scanning} -setup {
set a {}; set b {}; set c {}; set d {}