From: drh Date: Wed, 31 Dec 2014 15:14:29 +0000 (+0000) Subject: Change the width of output lines in releasetest.tcl from 70 to 79 characters. X-Git-Tag: version-3.8.8~52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c67d650264c37d024074736a451ba48480b0c4d2;p=thirdparty%2Fsqlite.git Change the width of output lines in releasetest.tcl from 70 to 79 characters. FossilOrigin-Name: a468d96700c05d1a01a745930d13ce89c09ce4fa --- diff --git a/manifest b/manifest index 18d0f09e4c..847c4e9ac3 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Make\ssure\sPRAGMA\sdata_version\sis\supdated\seven\sif\sthe\scache\sis\sempty\swhen\nanother\sconnection\schanges\sthe\sdatabase. -D 2014-12-31T14:18:48.679 +C Change\sthe\swidth\sof\soutput\slines\sin\sreleasetest.tcl\sfrom\s70\sto\s79\scharacters. +D 2014-12-31T15:14:29.242 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in 7cd23e4fc91004a6bd081623e1bc6932e44828c0 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -801,7 +801,7 @@ F test/randexpr1.test eda062a97e60f9c38ae8d806b03b0ddf23d796df F test/rdonly.test dd30a4858d8e0fbad2304c2bd74a33d4df36412a F test/regexp1.test 497ea812f264d12b6198d6e50a76be4a1973a9d8 F test/reindex.test 44edd3966b474468b823d481eafef0c305022254 -F test/releasetest.tcl 8f35e5073901e48a634a649462fa2e7e522e9dc0 +F test/releasetest.tcl fad4402d19b94021a3a9032b7b4a9855bf1ef498 F test/resolver01.test 33abf37ff8335e6bf98f2b45a0af3e06996ccd9a F test/rollback.test 458fe73eb3ffdfdf9f6ba3e9b7350a6220414dea F test/rollback2.test fc14cf6d1a2b250d2735ef16124b971bce152f14 @@ -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 94101011966243d599519a69c99c202ea31b928d -R ce88be0f3eb17006a4da57569dcf8731 +P cf48eb608af9102a8def2a5b7f5f7b348548116f +R 0eaceead134311c4ebac703045ebc24b U drh -Z eb99526801ba8c2c5e7e84b0513387c7 +Z b3362a619542185f9ea20d6df6dfbfd7 diff --git a/manifest.uuid b/manifest.uuid index a48eb47585..f7f3930580 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -cf48eb608af9102a8def2a5b7f5f7b348548116f \ No newline at end of file +a468d96700c05d1a01a745930d13ce89c09ce4fa \ No newline at end of file diff --git a/test/releasetest.tcl b/test/releasetest.tcl index e2311d8f9c..8b97f7f4f3 100644 --- a/test/releasetest.tcl +++ b/test/releasetest.tcl @@ -133,6 +133,7 @@ array set ::Configs { -DSQLITE_MAX_VARIABLE_NUMBER=500000 -DSQLITE_DEBUG=1 -DSQLITE_PREFER_PROXY_LOCKING=1 + -DSQLITE_ENABLE_API_ARMOR=1 } "Extra-Robustness" { -DSQLITE_ENABLE_OVERSIZE_CELL_CHECK=1 @@ -265,7 +266,7 @@ proc run_test_suite {name testtarget config} { if {!$::DRYRUN} { set title ${name}($testtarget) set n [string length $title] - puts -nonewline "${title}[string repeat . [expr {54-$n}]]" + puts -nonewline "${title}[string repeat . [expr {63-$n}]]" flush stdout } @@ -436,7 +437,7 @@ proc main {argv} { # Process any command line options. process_options $argv - puts [string repeat * 70] + puts [string repeat * 79] set ::NERR 0 set ::NTEST 0 @@ -476,7 +477,7 @@ proc main {argv} { set min [expr {($elapsetime/60)%60}] set sec [expr {$elapsetime%60}] set etime [format (%02d:%02d:%02d) $hr $min $sec] - puts [string repeat * 70] + puts [string repeat * 79] puts "$::NERRCASE failures of $::NTESTCASE tests run in $etime" }