From: dan Date: Sat, 25 Jul 2015 14:26:17 +0000 (+0000) Subject: Fix the rowallock.test script so that it works with builds that do not support mmap... X-Git-Tag: version-3.8.11~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d1f9ffeb5fe2c5aa35cb061ab985c8c8cfe4dcdc;p=thirdparty%2Fsqlite.git Fix the rowallock.test script so that it works with builds that do not support mmap mode. FossilOrigin-Name: 7efed5786bb6a7a452f5aece9d6c6a09e6930939 --- diff --git a/manifest b/manifest index eeb747a2d2..a90a8b401b 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Fix\sthe\swal3.test\smodule\sso\sthat\sit\sworks\swith\sthe\smemsubsys1\spermutation. -D 2015-07-25T14:12:26.528 +C Fix\sthe\srowallock.test\sscript\sso\sthat\sit\sworks\swith\sbuilds\sthat\sdo\snot\ssupport\smmap\smode. +D 2015-07-25T14:26:17.310 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in 4de3ef40c8b3b75c0c55ff4242a43c8ce1ad90ee F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -928,7 +928,7 @@ F test/resolver01.test f4022acafda7f4d40eca94dbf16bc5fc4ac30ceb F test/rollback.test 458fe73eb3ffdfdf9f6ba3e9b7350a6220414dea F test/rollback2.test fc14cf6d1a2b250d2735ef16124b971bce152f14 F test/rollbackfault.test 6a004f71087cc399296cffbb5429ea6da655ae65 -F test/rowallock.test f7f834125f11ff62f6e1ae7d0b07fd9228f2d5a2 +F test/rowallock.test 3f88ec6819489d0b2341c7a7528ae17c053ab7cc F test/rowhash.test 0bc1d31415e4575d10cacf31e1a66b5cc0f8be81 F test/rowid.test 742b5741584a8a44fd83e856cc2896688401d645 F test/rtree.test 0c8d9dd458d6824e59683c19ab2ffa9ef946f798 @@ -1366,7 +1366,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f -P 70885729b7488474e7294212f9b334382675b112 -R 250ee79575b07f5905c70272d3f0725d -U drh -Z 6e6235b4067a27fa859f391ef1f319aa +P af85b01d93d3043f2e1a38d289ca00a5ef24520c +R db94ec1d73cc23ba4e670b88b84d4747 +U dan +Z b8835290039c2a6fa5a2ed83d159201f diff --git a/manifest.uuid b/manifest.uuid index 12900ea58b..3d6f59a83b 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -af85b01d93d3043f2e1a38d289ca00a5ef24520c \ No newline at end of file +7efed5786bb6a7a452f5aece9d6c6a09e6930939 \ No newline at end of file diff --git a/test/rowallock.test b/test/rowallock.test index 57dbbb2c2a..a1cab8d327 100644 --- a/test/rowallock.test +++ b/test/rowallock.test @@ -17,6 +17,11 @@ source $testdir/tester.tcl source $testdir/lock_common.tcl set testprefix rowallock +set mmap_res 1000000 +ifcapable !mmap { + set mmap_res 0 +} + do_multiclient_test tn { code2 { db2 close } code3 { db3 close } @@ -36,7 +41,7 @@ do_multiclient_test tn { do_execsql_test 1.$tn.2 { PRAGMA mmap_size = 1000000; - } {1000000} + } $mmap_res do_execsql_test 1.$tn.2.1 { SELECT * FROM t1; } {1 2 3 4}