From: drh Date: Fri, 19 Dec 2003 12:31:19 +0000 (+0000) Subject: Makefile updates for the new "test4.c" module. Also disable large file X-Git-Tag: version-3.6.10~4929 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5202560ee5d87c659cdf3192eb41cb6eedb61e80;p=thirdparty%2Fsqlite.git Makefile updates for the new "test4.c" module. Also disable large file tests for archic TCL versions. (CVS 1139) FossilOrigin-Name: 55e2488912871381959326ab7fa89123ab30d659 --- diff --git a/Makefile.in b/Makefile.in index 23e1c040cd..962308d5f3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -142,6 +142,7 @@ TESTSRC = \ $(TOP)/src/test1.c \ $(TOP)/src/test2.c \ $(TOP)/src/test3.c \ + $(TOP)/src/test4.c \ $(TOP)/src/md5.c # Header files used by all library source files. diff --git a/manifest b/manifest index a2b2430236..873bae8c5e 100644 --- a/manifest +++ b/manifest @@ -1,6 +1,6 @@ -C A\sbetter\sfix\sfor\sticket\s#530\s-\sone\sthat\sis\slikely\sto\swork\son\sunix\nimplementations\sin\saddition\sto\slinux.\s\sAlso\smore\stests\sfor\smulti-thread\nlocking\sadded.\s(CVS\s1138) -D 2003-12-19T08:40:23 -F Makefile.in 5cb273b7d0e945d47ee8b9ad1c2a04ce79927d2d +C Makefile\supdates\sfor\sthe\snew\s"test4.c"\smodule.\s\sAlso\sdisable\slarge\sfile\ntests\sfor\sarchic\sTCL\sversions.\s(CVS\s1139) +D 2003-12-19T12:31:20 +F Makefile.in 3c04579d45d26fc0432dcf0e5414ad065722c3a1 F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906 F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd F VERSION 37237c64d9e5b103d462e341e4ac3b4f2a6e43dd @@ -72,7 +72,7 @@ F test/all.test 569a92a8ee88f5300c057cc4a8f50fbbc69a3242 F test/attach.test c26848402e7ac829e043e1fa5e0eb87032e5d81d F test/attach2.test d0105f4e8b1debf0ac25ed7df986b5854620e172 F test/auth.test 5c4d95cdaf539c0c236e20ce1f71a93e7dde9185 -F test/bigfile.test 1cd8256d4619c39bea48147d344f348823e78678 +F test/bigfile.test ea904b853ce2d703b16c5ce90e2b54951bc1ae81 F test/bigrow.test 8ab252dba108f12ad64e337b0f2ff31a807ac578 F test/bind.test 56a57043b42c4664ca705f6050e56717a8a6699a F test/btree.test 1e3463c7838e7e71bbf37c9c6e45beee9c8975ba @@ -179,7 +179,7 @@ F www/speed.tcl 2f6b1155b99d39adb185f900456d1d592c4832b3 F www/sqlite.tcl 3c83b08cf9f18aa2d69453ff441a36c40e431604 F www/tclsqlite.tcl b9271d44dcf147a93c98f8ecf28c927307abd6da F www/vdbe.tcl 9b9095d4495f37697fd1935d10e14c6015e80aa1 -P b36a4bb61094d539273c21a9e4042384f10a7806 -R de39b8252b64bbe001153a824a71610f +P 7dddbeb586504de30c64a1e61614da447f18c8ba +R 8ca7ffb65f56f2637926388c44e96204 U drh -Z 22268d4d15b83af3c4ce1b4c3335ae45 +Z c56a7f39662db48c06db8a9cdcf08cc5 diff --git a/manifest.uuid b/manifest.uuid index ba2ecc6085..7b96f7e00b 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -7dddbeb586504de30c64a1e61614da447f18c8ba \ No newline at end of file +55e2488912871381959326ab7fa89123ab30d659 \ No newline at end of file diff --git a/test/bigfile.test b/test/bigfile.test index b3f56a08bf..d1ee9434a1 100644 --- a/test/bigfile.test +++ b/test/bigfile.test @@ -12,12 +12,18 @@ # focus of this script testing the ability of SQLite to handle database # files larger than 4GB. # -# $Id: bigfile.test,v 1.2 2002/12/17 14:13:49 drh Exp $ +# $Id: bigfile.test,v 1.3 2003/12/19 12:31:22 drh Exp $ # set testdir [file dirname $argv0] source $testdir/tester.tcl +# These tests only work for Tcl version 8.4 and later. Prior to 8.4, +# Tcl was unable to handle large files. +# +scan $::tcl_version %f vx +if {$vx<8.4} return + # This is the md5 checksum of all the data in table t1 as created # by the first test. We will use this number to make sure that data # never changes.