]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Do not run pragma3.test as part of the mmap permutation.
authordan <dan@noemail.net>
Wed, 31 Dec 2014 09:52:15 +0000 (09:52 +0000)
committerdan <dan@noemail.net>
Wed, 31 Dec 2014 09:52:15 +0000 (09:52 +0000)
FossilOrigin-Name: 94101011966243d599519a69c99c202ea31b928d

manifest
manifest.uuid
test/permutations.test

index f0f77e4215b7e5115ae190adf07c41104352805a..9942d4b320a1eddaec15b5d568aae88d67d95f19 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Add\sthe\s"mptester"\stests\sto\sreleasetest.tcl.
-D 2014-12-30T20:40:32.817
+C Do\snot\srun\spragma3.test\sas\spart\sof\sthe\smmap\spermutation.
+D 2014-12-31T09:52:15.410
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 7cd23e4fc91004a6bd081623e1bc6932e44828c0
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -782,7 +782,7 @@ F test/pagesize.test 1dd51367e752e742f58e861e65ed7390603827a0
 F test/pcache.test b09104b03160aca0d968d99e8cd2c5b1921a993d
 F test/pcache2.test a83efe2dec0d392f814bfc998def1d1833942025
 F test/percentile.test b98fc868d71eb5619d42a1702e9ab91718cbed54
-F test/permutations.test d408cd2d48e7a61c9c51ae528d94c3c48ce97477
+F test/permutations.test e1c603ec095e29de3d1f1566d704ea270f9c3f89
 F test/pragma.test aa16dedfe01c02c8895169012f7dfde9c163f0d5
 F test/pragma2.test aea7b3d82c76034a2df2b38a13745172ddc0bc13
 F test/pragma3.test 0ca2aea1499a7c2dcee235419e520d825dac958d
@@ -1234,7 +1234,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 c7f84717d61197afa9e0ac607c4b349361e6e2b7
-R 0933bc5647d1041ce6d28bf44cb1ff01
-U drh
-Z 8ac9cef8267dc35aa4f2371bf41435dc
+P 93094a68d3a6178779878cbbe0e5e09ef31a323f
+R 568e484006de3cb2669a32ac139fa8fe
+U dan
+Z 9ed2b5eb1c7f4568141d7b75c646d319
index daccc741585fb76f7c611a8677b3112e2238d303..9a0f1e309b3fea4a4c475218244c92d5620d8622 100644 (file)
@@ -1 +1 @@
-93094a68d3a6178779878cbbe0e5e09ef31a323f
\ No newline at end of file
+94101011966243d599519a69c99c202ea31b928d
\ No newline at end of file
index 63f8dc589e6dfebc85c364164d4a2d1e32396c4b..28572ca0a7ef9f627a2aaf42d0db703fe8a40a55 100644 (file)
@@ -141,11 +141,15 @@ test_suite "veryquick" -prefix "" -description {
 ]
 
 test_suite "mmap" -prefix "mm-" -description {
-  Similar to veryquick. Except with memory mapping disabled.
+  Similar to veryquick. Except with memory mapping enabled.
 } -presql {
   pragma mmap_size = 268435456;
 } -files [
-  test_set $allquicktests -exclude *malloc* *ioerr* *fault* -include malloc.test
+  # Do not run pragma3.test, as it depends on the values returned by
+  # "PRAGMA data_version". And if mmap is being used these are often,
+  # but not always, one greater than if it were not.
+  test_set $allquicktests -exclude *malloc* *ioerr* *fault* pragma3.test \
+    -include malloc.test
 ]
 
 test_suite "valgrind" -prefix "" -description {