]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Reduce the size of an integer literal in rowhash.tcl so that the test
authordrh <drh@noemail.net>
Sat, 2 May 2009 12:02:01 +0000 (12:02 +0000)
committerdrh <drh@noemail.net>
Sat, 2 May 2009 12:02:01 +0000 (12:02 +0000)
is able to run with the default TCL installation on Mac OS 10.5. (CVS 6593)

FossilOrigin-Name: 2229accef308db9feac4e1de16b57e7f680dbb1a

manifest
manifest.uuid
test/rowhash.test

index 744628383e1ad30a2bbc27ef76c6e7ab8abd1a61..d1483fa29366b4779e0820904f9205a4b9cc2261 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C When\sa\scursor\spoints\sat\sthe\slast\sentry\sof\san\sintkey\sbtree\safter\san\sinsert,\sleave\sit\sthere\s(instead\sof\smoving\sit\sto\sthe\stree\sroot\snode).\sThis\sspeeds\sup\sstatements\sof\sthe\sform\s"INSERT\sINTO\s...\sSELECT\s..."\sthat\suse\sauto-generated\srowids.\s(CVS\s6592)
-D 2009-05-02T10:03:09
+C Reduce\sthe\ssize\sof\san\sinteger\sliteral\sin\srowhash.tcl\sso\sthat\sthe\stest\nis\sable\sto\srun\swith\sthe\sdefault\sTCL\sinstallation\son\sMac\sOS\s10.5.\s(CVS\s6593)
+D 2009-05-02T12:02:02
 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
 F Makefile.in 583e87706abc3026960ed759aff6371faf84c211
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -509,7 +509,7 @@ F test/randexpr1.test 1084050991e9ba22c1c10edd8d84673b501cc25a
 F test/rdonly.test bd054831f8a3078e765a0657e247182486f0cb47
 F test/reindex.test 44edd3966b474468b823d481eafef0c305022254
 F test/rollback.test 1f70ab4301d8d105d41438a436cad1fc8897f5e5
-F test/rowhash.test 04525a02ce21696b6d47f4735be3e8f42c22a53f
+F test/rowhash.test 97f56043ba11f0679920416c0cdbc72e5272267b
 F test/rowid.test 1c8fc43c60d273e6ea44dfb992db587f3164312c
 F test/rtree.test b85fd4f0861a40ca366ac195e363be2528dcfadf
 F test/safety.test b69e2b2dd5d52a3f78e216967086884bbc1a09c6
@@ -727,7 +727,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P 20c4acc291def33980f584f882c76e85ee1c8238
-R 473bd4e478192dc26a9afe58e69a17f0
-U danielk1977
-Z 5fda7c8bdbaa8fda519ae98860016fe1
+P 9950c0a79c82eb7d8495b0b1a8fe117d566e2387
+R 6ae38c3439a7c80d21c4c447ba2af531
+U drh
+Z a3a56a3572a73362a5dc6024fff3a217
index e59e11086a37d8c926faa2c302795b916f32b935..188d3e024928ed0f9facdf10baa4fd72144cd045 100644 (file)
@@ -1 +1 @@
-9950c0a79c82eb7d8495b0b1a8fe117d566e2387
\ No newline at end of file
+2229accef308db9feac4e1de16b57e7f680dbb1a
\ No newline at end of file
index 80052ab74132725111ebc048658b7315d5fd22f9..0d260e915c5e59ce0a2bdddee7c6820e50d71be4 100644 (file)
@@ -12,7 +12,7 @@
 # This file implements regression tests for SQLite library.  The
 # focus of this file is the code in rowhash.c.
 #
-# $Id: rowhash.test,v 1.4 2009/04/28 15:48:09 danielk1977 Exp $
+# $Id: rowhash.test,v 1.5 2009/05/02 12:02:02 drh Exp $
 
 set testdir [file dirname $argv0]
 source $testdir/tester.tcl
@@ -47,7 +47,7 @@ if {[working_64bit_int]} {
   expr srand(1)
   for {set i 4} {$i < 10} {incr i} {
     for {set j 0} {$j < 5000} {incr j} {
-        lappend L [expr int(rand()*10000000000)]
+        lappend L [expr int(rand()*1000000000)]
     }
     do_keyset_test rowhash-2.$i $L
   }