From: drh Date: Wed, 26 Nov 2008 13:44:30 +0000 (+0000) Subject: Fix the test condition for the test cases added to prevent regressions of X-Git-Tag: version-3.6.10~224 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9bce108bedef7d168dee75c860ad12b4d07274f;p=thirdparty%2Fsqlite.git Fix the test condition for the test cases added to prevent regressions of ticket #3508. (CVS 5957) FossilOrigin-Name: 4e94aa3bedc6dba003a2a4ecbba9c11c465eab4f --- diff --git a/manifest b/manifest index 5488506325..6b385b9672 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Fix\san\sobscure\smemory\sleak\sthat\scan\sfollow\san\sIO\serror.\s(CVS\s5956) -D 2008-11-26T07:40:30 +C Fix\sthe\stest\scondition\sfor\sthe\stest\scases\sadded\sto\sprevent\sregressions\sof\nticket\s#3508.\s(CVS\s5957) +D 2008-11-26T13:44:31 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0 F Makefile.in 0aa7bbe3be6acc4045706e3bb3fd0b8f38f4a3b5 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654 @@ -581,7 +581,7 @@ F test/tkt3457.test e9ca2b90f0eb1fb8be73a30d29aacb2e3abedeb9 F test/tkt3461.test 5a63e8d8ee5ce00f076b1e2f82aba5480a0f14ed F test/tkt3472.test e689a687631e59c7a47d9438148115fee23b16c3 F test/tkt3493.test 8472b3464e49a27ff7271308eec46154209e667b -F test/tkt3508.test d55e4f0ccb4f60beef800e941d2610fc4d78ce6c +F test/tkt3508.test 6be4599fc011cd9dc699e8e6191e11a18c89ff65 F test/tkt35xx.test 53bca895091e968126a858ee7da186f59f328994 F test/tokenize.test ce430a7aed48fc98301611429595883fdfcab5d7 F test/trace.test 951cd0f5f571e7f36bf7bfe04be70f90fb16fb00 @@ -662,7 +662,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e -P 1a66481a37dd9a21673c0ffb3df2be0614fe9f63 -R 0738b0a779bd8893bc38555e88feb4fd -U danielk1977 -Z 1fa6bfa3aaf0643fc7acabd1899b00a4 +P 8271229c66c72c344ad7afb901b88d9cdaaa6f43 +R dfb38e895af1414d75f258479ab3847a +U drh +Z 126ab02860dfb1a26b012a237bc58a63 diff --git a/manifest.uuid b/manifest.uuid index 8ba24d0414..2eceeb7071 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -8271229c66c72c344ad7afb901b88d9cdaaa6f43 \ No newline at end of file +4e94aa3bedc6dba003a2a4ecbba9c11c465eab4f \ No newline at end of file diff --git a/test/tkt3508.test b/test/tkt3508.test index 60f5f711dd..9e5a50199d 100644 --- a/test/tkt3508.test +++ b/test/tkt3508.test @@ -10,13 +10,13 @@ #*********************************************************************** # This file implements regression tests for SQLite library. # -# $Id: tkt3508.test,v 1.1 2008/11/22 18:28:51 drh Exp $ +# $Id: tkt3508.test,v 1.2 2008/11/26 13:44:31 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl do_test tkt3508-1.1 { - execsql { + catchsql { CREATE TABLE modificationsTmp ( SUBSTRATE_HPRD_ID VARCHAR(80), SUBSTRATE_GENE_SYMBOL VARCHAR(80), @@ -33,6 +33,6 @@ do_test tkt3508-1.1 { select SUBSTRATE_HPRD_ID, count(substrate_refseq_id) as c from modificationsTmp where c > 1 group by SUBSTRATE_HPRD_ID; } -} {} +} {1 {misuse of aggregate:}} finish_test