]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Do not run the tests in with2.test with SQLITE_OMIT_CTE builds.
authordan <dan@noemail.net>
Mon, 20 Jan 2014 14:17:08 +0000 (14:17 +0000)
committerdan <dan@noemail.net>
Mon, 20 Jan 2014 14:17:08 +0000 (14:17 +0000)
FossilOrigin-Name: 8a973912e98c9b1bb9d3f914527d35c1e7f2011a

manifest
manifest.uuid
test/with2.test

index 7463d6749420695b7a747e1becb334575a62e2b8..39ddd14f7782d5a50b368819780ffa566749f189 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Add\sa\ssudoku\ssolver\sto\sthe\srecursive\squery\stests\sin\swith1.test.
-D 2014-01-18T18:33:44.994
+C Do\snot\srun\sthe\stests\sin\swith2.test\swith\sSQLITE_OMIT_CTE\sbuilds.
+D 2014-01-20T14:17:08.203
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 2ef13430cd359f7b361bb863504e227b25cc7f81
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -1092,7 +1092,7 @@ F test/win32heap.test ea19770974795cff26e11575e12d422dbd16893c
 F test/win32lock.test 7a6bd73a5dcdee39b5bb93e92395e1773a194361
 F test/win32longpath.test 169c75a3b2e43481f4a62122510210c67b08f26d
 F test/with1.test cec63b56797a70842afa8929c241dfdb3d864283
-F test/with2.test 67a3347f2d78618db9434a248fb5003af8f04bc1
+F test/with2.test 2fe78fcd8deef2a0f9cfc49bfc755911d0b3fd64
 F test/withM.test e97f2a8c506ab3ea9eab94e6f6072f6cc924c991
 F test/without_rowid1.test aaa26da19d543cd8d3d2d0e686dfa255556c15c8
 F test/without_rowid2.test af260339f79d13cb220288b67cd287fbcf81ad99
@@ -1151,7 +1151,7 @@ F tool/vdbe-compress.tcl 0cf56e9263a152b84da86e75a5c0cdcdb7a47891
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01
 F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff
-P d38d485e581dab99a3ee6b348da8ddaf9b379ff2
-R 65511deacff317a7a6d96d8a97a06cc3
-U drh
-Z 1781cdebe197572ff0a729675feb42d9
+P 679eff8759aa25368b977c0d26b78a9fcd9486f5
+R 4f2132a97fe1dbb0dda85feb1706370a
+U dan
+Z 185238e927f243f40ec02c5fcc28d90b
index 8e6cce16dbba314cd725135bafecd5ecb7c9df60..8f8eb075b5531b7e5282db024567eb1b557cd458 100644 (file)
@@ -1 +1 @@
-679eff8759aa25368b977c0d26b78a9fcd9486f5
\ No newline at end of file
+8a973912e98c9b1bb9d3f914527d35c1e7f2011a
\ No newline at end of file
index 90a64a4755f1453a680f5de16926099fd3925511..d702f8c962aed8987e1c991bb9cad37e1d22b02a 100644 (file)
@@ -16,6 +16,11 @@ set testdir [file dirname $argv0]
 source $testdir/tester.tcl
 set ::testprefix with2
 
+ifcapable {!cte} {
+  finish_test
+  return
+}
+
 do_execsql_test 1.0 {
   CREATE TABLE t1(a);
   INSERT INTO t1 VALUES(1);