From: shane Date: Fri, 2 Jan 2009 15:45:47 +0000 (+0000) Subject: Many of the boundary tests depend on a working 64-bit implementation of TCL, so skip... X-Git-Tag: version-3.6.10~85 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3fc21d1fde40a018597cae730f2faf3a0cea13e;p=thirdparty%2Fsqlite.git Many of the boundary tests depend on a working 64-bit implementation of TCL, so skip them if this is not available. (CVS 6099) FossilOrigin-Name: b1a4a17f8752d27f3b360019490ab3f15a1f629f --- diff --git a/manifest b/manifest index c98b04ce4b..7cff8b9e44 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Increment\sthe\sversion\snumber\sto\s3.6.8.\s(CVS\s6098) -D 2009-01-02T12:35:03 +C Many\sof\sthe\sboundary\stests\sdepend\son\sa\sworking\s64-bit\simplementation\sof\sTCL,\sso\sskip\sthem\sif\sthis\sis\snot\savailable.\s(CVS\s6099) +D 2009-01-02T15:45:48 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0 F Makefile.in 77635d0909c2067cee03889a1e04ce910d8fb809 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654 @@ -239,14 +239,14 @@ F test/bind.test 1134441f1ea47abd1c740090435a6ecbe9ceb263 F test/bindxfer.test d4f573750e06c34ef2309acb95ad57da1d3c983f F test/bitvec.test ecea9aa315f36991e56e326701279b7775cb2bef F test/blob.test 2a38d867bdf08f9ce081776acec1ac8d4bca66be -F test/boundary1.tcl 159fe6976fedd7f5cfdd19e6792c54c728b74826 -F test/boundary1.test 7481c191f25082a2a25c9b01ee8d04139177cfc5 -F test/boundary2.tcl cc609055aa7c9a1ec9299d5e894e97f6793f7b3c -F test/boundary2.test 49cc59ca36756f59197b52bb6dc1b4c39c13b785 -F test/boundary3.tcl fd1123e705c93e9423f9ecfd8c81eaab502e4043 -F test/boundary3.test 092bb029aca7aeadd9540833cf6fde09897ca04c -F test/boundary4.tcl 66ca93ab8bbca9d75648dcd6c5cfaea1f629cd53 -F test/boundary4.test 6cc878c9f31852b5962b1ed4ecae3726a5ae681c +F test/boundary1.tcl 6421b2d920d8b09539503a8673339d32f7609eb1 +F test/boundary1.test 66d7f4706ccdb42d58eafdb081de07b0eb42d77b +F test/boundary2.tcl e34ef4e930cf1083150d4d2c603e146bd3b76bcb +F test/boundary2.test 9ae758d7dab7e882c8b6cc4a6a10278385bff8fa +F test/boundary3.tcl 8901d6a503d0bf64251dd81cc74e5ad3add4b119 +F test/boundary3.test 56ef82096b4329aca2be74fa1e2b0f762ea0eb45 +F test/boundary4.tcl bf068a95bed74cffd5829766b836479fcebeb18b +F test/boundary4.test 940bd509e34ae93c14ae62aeb8cf9afcf178b863 F test/busy.test 76b4887f8b9160ba903c1ac22e8ff406ad6ae2f0 F test/cache.test 3ff445c445742a7b6b9ba6e1d62a25263f9424b9 F test/capi2.test 172c717ed101e78e0798dd21b9896a22366f35b4 @@ -690,7 +690,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e -P d44c84c0f77bd0fc4a9942177b6cae6d109b89b7 -R 27f0955e85d2aa981a034b44932144e0 -U drh -Z 56a396e4546cd9985094017c1fd7ad87 +P 7509641a4c410b1eaaf1edba259fbe01cd60b108 +R ccc13642e0486fd272ae8ed5b609139e +U shane +Z 474fcb6f9818ae90cbec2e22e66e6549 diff --git a/manifest.uuid b/manifest.uuid index fa65d69c99..9f05ed57cc 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -7509641a4c410b1eaaf1edba259fbe01cd60b108 \ No newline at end of file +b1a4a17f8752d27f3b360019490ab3f15a1f629f \ No newline at end of file diff --git a/test/boundary1.tcl b/test/boundary1.tcl index af0e1afc3e..3896b50463 100644 --- a/test/boundary1.tcl +++ b/test/boundary1.tcl @@ -13,10 +13,13 @@ puts {# 2008 December 11 # This file is automatically generated from a separate TCL script. # This file seeks to exercise integer boundary values. # -# $Id: boundary1.tcl,v 1.2 2008/12/14 02:55:16 drh Exp $ +# $Id: boundary1.tcl,v 1.3 2009/01/02 15:45:48 shane Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl + +# Many of the boundary tests depend on a working 64-bit implementation. +if {![working_64bit_int]} { finish_test; return } } expr srand(0) diff --git a/test/boundary1.test b/test/boundary1.test index 57e6b7b53d..0e2458c15e 100644 --- a/test/boundary1.test +++ b/test/boundary1.test @@ -13,11 +13,14 @@ # This file is automatically generated from a separate TCL script. # This file seeks to exercise integer boundary values. # -# $Id: boundary1.test,v 1.1 2008/12/12 17:56:16 drh Exp $ +# $Id: boundary1.test,v 1.2 2009/01/02 15:45:48 shane Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl +# Many of the boundary tests depend on a working 64-bit implementation. +if {![working_64bit_int]} { finish_test; return } + do_test boundary1-1.1 { db eval { CREATE TABLE t1(a,x); diff --git a/test/boundary2.tcl b/test/boundary2.tcl index 326d22d98c..b141166072 100644 --- a/test/boundary2.tcl +++ b/test/boundary2.tcl @@ -13,10 +13,13 @@ puts {# 2008 December 11 # This file is automatically generated from a separate TCL script. # This file seeks to exercise integer boundary values. # -# $Id: boundary2.tcl,v 1.2 2008/12/14 02:55:16 drh Exp $ +# $Id: boundary2.tcl,v 1.3 2009/01/02 15:45:48 shane Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl + +# Many of the boundary tests depend on a working 64-bit implementation. +if {![working_64bit_int]} { finish_test; return } } expr srand(0) diff --git a/test/boundary2.test b/test/boundary2.test index 3f25567eff..15a824dc5d 100644 --- a/test/boundary2.test +++ b/test/boundary2.test @@ -13,11 +13,14 @@ # This file is automatically generated from a separate TCL script. # This file seeks to exercise integer boundary values. # -# $Id: boundary2.test,v 1.1 2008/12/12 19:19:22 drh Exp $ +# $Id: boundary2.test,v 1.2 2009/01/02 15:45:48 shane Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl +# Many of the boundary tests depend on a working 64-bit implementation. +if {![working_64bit_int]} { finish_test; return } + do_test boundary2-1.1 { db eval { CREATE TABLE t1(r INTEGER, a INTEGER, x TEXT); diff --git a/test/boundary3.tcl b/test/boundary3.tcl index c5f6470e69..ac3bf0ad94 100644 --- a/test/boundary3.tcl +++ b/test/boundary3.tcl @@ -13,10 +13,13 @@ puts {# 2008 December 11 # This file is automatically generated from a separate TCL script. # This file seeks to exercise integer boundary values. # -# $Id: boundary3.tcl,v 1.2 2008/12/14 02:55:16 drh Exp $ +# $Id: boundary3.tcl,v 1.3 2009/01/02 15:45:48 shane Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl + +# Many of the boundary tests depend on a working 64-bit implementation. +if {![working_64bit_int]} { finish_test; return } } expr srand(0) diff --git a/test/boundary3.test b/test/boundary3.test index 42657ec891..dbe9abfa0a 100644 --- a/test/boundary3.test +++ b/test/boundary3.test @@ -13,11 +13,14 @@ # This file is automatically generated from a separate TCL script. # This file seeks to exercise integer boundary values. # -# $Id: boundary3.test,v 1.1 2008/12/12 19:19:22 drh Exp $ +# $Id: boundary3.test,v 1.2 2009/01/02 15:45:48 shane Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl +# Many of the boundary tests depend on a working 64-bit implementation. +if {![working_64bit_int]} { finish_test; return } + do_test boundary3-1.1 { db eval { CREATE TABLE t1(a,x); diff --git a/test/boundary4.tcl b/test/boundary4.tcl index df528e55fa..8fcde63c94 100644 --- a/test/boundary4.tcl +++ b/test/boundary4.tcl @@ -13,10 +13,13 @@ puts {# 2008 December 11 # This file is automatically generated from a separate TCL script. # This file seeks to exercise integer boundary values. # -# $Id: boundary4.tcl,v 1.2 2008/12/14 02:55:16 drh Exp $ +# $Id: boundary4.tcl,v 1.3 2009/01/02 15:45:48 shane Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl + +# Many of the boundary tests depend on a working 64-bit implementation. +if {![working_64bit_int]} { finish_test; return } } expr srand(0) diff --git a/test/boundary4.test b/test/boundary4.test index 2fd5f6e5ac..5a30a175c9 100644 --- a/test/boundary4.test +++ b/test/boundary4.test @@ -13,11 +13,14 @@ # This file is automatically generated from a separate TCL script. # This file seeks to exercise integer boundary values. # -# $Id: boundary4.test,v 1.1 2008/12/12 19:19:22 drh Exp $ +# $Id: boundary4.test,v 1.2 2009/01/02 15:45:48 shane Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl +# Many of the boundary tests depend on a working 64-bit implementation. +if {![working_64bit_int]} { finish_test; return } + do_test boundary4-1.1 { db eval { CREATE TABLE t1(a,x);