]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Makefile updates for the new "test4.c" module. Also disable large file
authordrh <drh@noemail.net>
Fri, 19 Dec 2003 12:31:19 +0000 (12:31 +0000)
committerdrh <drh@noemail.net>
Fri, 19 Dec 2003 12:31:19 +0000 (12:31 +0000)
tests for archic TCL versions. (CVS 1139)

FossilOrigin-Name: 55e2488912871381959326ab7fa89123ab30d659

Makefile.in
manifest
manifest.uuid
test/bigfile.test

index 23e1c040cd5b7175a365895ee77a19dcac544046..962308d5f3432f539c7e0f5bb0a369a6b3fd4b5f 100644 (file)
@@ -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.
index a2b2430236dd74cfe815620a3e9d3eb6e3c29b49..873bae8c5e51ae63be85f77486ab435f83bb20c1 100644 (file)
--- 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
index ba2ecc6085befad97426bd36bad56a5cec0de0de..7b96f7e00bed53e007652b243fcb4b960c598bba 100644 (file)
@@ -1 +1 @@
-7dddbeb586504de30c64a1e61614da447f18c8ba
\ No newline at end of file
+55e2488912871381959326ab7fa89123ab30d659
\ No newline at end of file
index b3f56a08bf0ff87998767be41b99b094b2a584ad..d1ee9434a1acf3df0c1fe1505556eeb7e236f045 100644 (file)
 # 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.