From: shaneh Date: Wed, 7 Jul 2010 16:20:38 +0000 (+0000) Subject: Fix test numbering issue in nan.test. X-Git-Tag: version-3.7.2~168^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=100efa3f73fc8fde94e7471e994d108ce0f22379;p=thirdparty%2Fsqlite.git Fix test numbering issue in nan.test. FossilOrigin-Name: 5bb1330fef559d47dc854089dedba45bf05db192 --- diff --git a/manifest b/manifest index 507f381fcc..dc508d1c99 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Close\sthe\sfile\shandle\sbefore\sreturning.\s\sTCL\stest\sscript\sissue\sonly. -D 2010-07-07T15:41:56 +C Fix\stest\snumbering\sissue\sin\snan.test. +D 2010-07-07T16:20:39 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0 F Makefile.in c4270a1cd7cd70a263b7e96a258aa90e9c3618eb F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654 @@ -528,7 +528,7 @@ F test/misc7.test c5f4e6a82e04e71820c0f9f64f6733f04c8ae0ae F test/misuse.test 30b3a458e5a70c31e74c291937b6c82204c59f33 F test/mutex1.test 5b71777fc127509cd257910c8db799de557a02de F test/mutex2.test bfeaeac2e73095b2ac32285d2756e3a65e681660 -F test/nan.test f3a0bcc6ca1acaa370efc5a7571e89507fb5927d +F test/nan.test a44e04df1486fcfb02d32468cbcd3c8e1e433723 F test/notify1.test 8433bc74bd952fb8a6e3f8d7a4c2b28dfd69e310 F test/notify2.test 195a467e021f74197be2c4fb02d6dee644b8d8db F test/notify3.test 7eeba3628c4e707c004b72a2489c48fbdbc5c2ee @@ -831,7 +831,7 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f -P 8eefc287265443ec043bdab629597e79c9d22006 -R 2e58f8920f121373055c521fad88b101 +P f4076d8567243174c023b7aa7ae9ca7f8f73e33b +R c970a5b5dd2be1e9ca492d8af03b80ee U shaneh -Z da48c113bd9ab0797a611da948cdf8b0 +Z d43b52294ca0a4f0a3b462dde9f23d6e diff --git a/manifest.uuid b/manifest.uuid index 8bf82f545c..c754d78891 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -f4076d8567243174c023b7aa7ae9ca7f8f73e33b \ No newline at end of file +5bb1330fef559d47dc854089dedba45bf05db192 \ No newline at end of file diff --git a/test/nan.test b/test/nan.test index 69f63045a8..0e9462fcb5 100644 --- a/test/nan.test +++ b/test/nan.test @@ -66,13 +66,13 @@ if {$tcl_platform(platform) != "symbian"} { sqlite3_reset $::STMT db eval {SELECT x, typeof(x) FROM t1} } {{} null inf real -inf real {} null {} null} - do_test nan-1.1.5 { + do_test nan-1.1.6 { sqlite3_bind_double $::STMT 1 -NaN0 sqlite3_step $::STMT sqlite3_reset $::STMT db eval {SELECT x, typeof(x) FROM t1} } {{} null inf real -inf real {} null {} null {} null} - do_test nan-1.1.6 { + do_test nan-1.1.7 { db eval { UPDATE t1 SET x=x-x; SELECT x, typeof(x) FROM t1; @@ -120,13 +120,13 @@ do_test nan-1.2.5 { sqlite3_reset $::STMT db eval {SELECT CAST(x AS text), typeof(x) FROM t1} } {{} null Inf real -Inf real {} null {} null} -do_test nan-1.2.5 { +do_test nan-1.2.6 { sqlite3_bind_double $::STMT 1 -NaN0 sqlite3_step $::STMT sqlite3_reset $::STMT db eval {SELECT CAST(x AS text), typeof(x) FROM t1} } {{} null Inf real -Inf real {} null {} null {} null} -do_test nan-1.2.6 { +do_test nan-1.2.7 { db eval { UPDATE t1 SET x=x-x; SELECT CAST(x AS text), typeof(x) FROM t1; @@ -253,23 +253,23 @@ do_test nan-4.10 { db eval {SELECT CAST(x AS text), typeof(x) FROM t1} } {-Inf real} -do_test nan-4.10 { +do_test nan-4.11 { db eval {DELETE FROM t1} db eval "INSERT INTO t1 VALUES(1234.5[string repeat 0 10000]12345)" db eval {SELECT x, typeof(x) FROM t1} } {1234.5 real} -do_test nan-4.11 { +do_test nan-4.12 { db eval {DELETE FROM t1} db eval "INSERT INTO t1 VALUES(-1234.5[string repeat 0 10000]12345)" db eval {SELECT x, typeof(x) FROM t1} } {-1234.5 real} -do_test nan-4.12 { +do_test nan-4.13 { db eval {DELETE FROM t1} set small [string repeat 0 10000].[string repeat 0 324][string repeat 9 10000] db eval "INSERT INTO t1 VALUES($small)" db eval {SELECT x, typeof(x) FROM t1} } {0.0 real} -do_test nan-4.13 { +do_test nan-4.14 { db eval {DELETE FROM t1} set small \ -[string repeat 0 10000].[string repeat 0 324][string repeat 9 10000] @@ -284,14 +284,14 @@ if {$tcl_platform(platform) != "symbian"} { # the very small numbers back to text form (probably due to a difference # in the sprintf() implementation). # - do_test nan-4.14 { + do_test nan-4.15 { db eval {DELETE FROM t1} set small \ [string repeat 0 10000].[string repeat 0 323][string repeat 9 10000] db eval "INSERT INTO t1 VALUES($small)" db eval {SELECT x, typeof(x) FROM t1} } {9.88131291682493e-324 real} - do_test nan-4.15 { + do_test nan-4.16 { db eval {DELETE FROM t1} set small \ -[string repeat 0 10000].[string repeat 0 323][string repeat 9 10000] @@ -299,13 +299,13 @@ if {$tcl_platform(platform) != "symbian"} { db eval {SELECT x, typeof(x) FROM t1} } {-9.88131291682493e-324 real} } -do_test nan-4.16 { +do_test nan-4.17 { db eval {DELETE FROM t1} set small [string repeat 0 10000].[string repeat 0 323][string repeat 9 10000] db eval "INSERT INTO t1 VALUES($small)" db eval {SELECT CAST(x AS text), typeof(x) FROM t1} } {9.88131291682493e-324 real} -do_test nan-4.17 { +do_test nan-4.18 { db eval {DELETE FROM t1} set small \ -[string repeat 0 10000].[string repeat 0 323][string repeat 9 10000]