Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: third_party/sqlite/src/mptest/config02.test

Issue 901033002: Import SQLite 3.8.7.4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Chromium changes to support SQLite 3.8.7.4. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 ** Configure five tasks in different ways, then run tests. 2 ** Configure five tasks in different ways, then run tests.
3 */ 3 */
4 PRAGMA page_size=512; 4 PRAGMA page_size=512;
5 --task 1 5 --task 1
6 PRAGMA mmap_size=0; 6 PRAGMA mmap_size=0;
7 --end 7 --end
8 --task 2 8 --task 2
9 PRAGMA mmap_size=28672; 9 PRAGMA mmap_size=28672;
10 --end 10 --end
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 PRAGMA auto_vacuum=FULL; 114 PRAGMA auto_vacuum=FULL;
115 VACUUM; 115 VACUUM;
116 --source multiwrite01.test 116 --source multiwrite01.test
117 --source crash02.subtest 117 --source crash02.subtest
118 --wait all 118 --wait all
119 PRAGMA auto_vacuum=FULL; 119 PRAGMA auto_vacuum=FULL;
120 PRAGMA page_size=512; 120 PRAGMA page_size=512;
121 VACUUM; 121 VACUUM;
122 --source multiwrite01.test 122 --source multiwrite01.test
123 --source crash02.subtest 123 --source crash02.subtest
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698