]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Disable the hook-7.5.2 tests when using sessions, since that are not correct
authordrh <drh@noemail.net>
Tue, 19 Aug 2014 00:33:22 +0000 (00:33 +0000)
committerdrh <drh@noemail.net>
Tue, 19 Aug 2014 00:33:22 +0000 (00:33 +0000)
in that case.

FossilOrigin-Name: 6d5b9332e8d8bb572ac98b0f4e47e59ad12aac26

manifest
manifest.uuid
test/hook.test

index 8526781f174591c54a3c1cd62fa14d855905560f..05bbcc7219c484a26bdb8c76c582a247ca95856a 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Improved\sresponse\sto\serror\sconditions\sin\sthe\s".session"\sshell\scommand\sand\nin\sthe\s"changeset"\scommand-line\sprogram.
-D 2014-08-19T00:26:17.830
+C Disable\sthe\shook-7.5.2\stests\swhen\susing\ssessions,\ssince\sthat\sare\snot\scorrect\nin\sthat\scase.
+D 2014-08-19T00:33:22.234
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in d5ad373b7a23525414b8843b3084cf90c560d92f
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -618,7 +618,7 @@ F test/fuzzer1.test d4c52aaf3ef923da293a2653cfab33d02f718a36
 F test/fuzzerfault.test 8792cd77fd5bce765b05d0c8e01b9edcf8af8536
 F test/genesis.tcl 1e2e2e8e5cc4058549a154ff1892fe5c9de19f98
 F test/hexlit.test f9ecde8145bfc2341573473256c74ae37a200497
-F test/hook.test 5429d34d6e59086175d8efbcd7e14d891375bdfb
+F test/hook.test 76201cfcba801d02d13600700f26ab64313d1826
 F test/icu.test 70df4faca133254c042d02ae342c0a141f2663f4
 F test/in.test 047c4671328e9032ab95666a67021adbbd36e98e
 F test/in2.test 5d4c61d17493c832f7d2d32bef785119e87bde75
@@ -1203,7 +1203,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32
 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P 4dc15fe066f079ff31c89a5e0242dd5b3c851d29
-R d85ccd3884f4a5cc5341a67dd8277838
+P b69f7dd1f35846c3bb9f4f160d50c4f03796f887
+R 8c550f2382b76c35956caff857ef2faa
 U drh
-Z edfba13e974f0e2f2be5cef97fba91ac
+Z 2eb508c95168b21e7a389265ba7bb22f
index fc1bfdae6917d10b1a65ca7c1b510975213ee8af..795c3d44c48255b8f80e3d25cdbd10721457fbcb 100644 (file)
@@ -1 +1 @@
-b69f7dd1f35846c3bb9f4f160d50c4f03796f887
\ No newline at end of file
+6d5b9332e8d8bb572ac98b0f4e47e59ad12aac26
\ No newline at end of file
index 28f0a66681dd70b640876f0b8960edc866874517..e6bb9ae2d02c123194dfe79794ad8d1512e70e64 100644 (file)
@@ -705,19 +705,21 @@ do_execsql_test 7.5.2.0 {
   ALTER TABLE t8 ADD COLUMN c DEFAULT 'xxx';
 }
 
-# At time of writing, these two are broken. They demonstrate that the
-# sqlite3_preupdate_old() method does not handle the case where ALTER TABLE
-# has been used to add a column with a default value other than NULL.
-#
-do_preupdate_test 7.5.2.1 {
-  DELETE FROM t8 WHERE a = 'one'
-} {
-  DELETE main t8 1 1   one two xxx
-}
-do_preupdate_test 7.5.2.2 {
-  UPDATE t8 SET b = 'five'
-} {
-  UPDATE main t8 2 2   three four xxx  three five xxx
+ifcapable !session {
+  # At time of writing, these two are broken. They demonstrate that the
+  # sqlite3_preupdate_old() method does not handle the case where ALTER TABLE
+  # has been used to add a column with a default value other than NULL.
+  #
+  do_preupdate_test 7.5.2.1 {
+    DELETE FROM t8 WHERE a = 'one'
+  } {
+    DELETE main t8 1 1   one two xxx
+  }
+  do_preupdate_test 7.5.2.2 {
+    UPDATE t8 SET b = 'five'
+  } {
+    UPDATE main t8 2 2   three four xxx  three five xxx
+  }
 }
 
 # This block of tests verifies that IPK values are correctly reported