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

Side by Side Diff: third_party/sqlite/src/mptest/config01.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 --if vfsname() GLOB 'unix' 4 --if vfsname() GLOB 'unix'
5 PRAGMA page_size=8192; 5 PRAGMA page_size=8192;
6 --task 1 6 --task 1
7 PRAGMA journal_mode=PERSIST; 7 PRAGMA journal_mode=PERSIST;
8 PRAGMA mmap_size=0; 8 PRAGMA mmap_size=0;
9 --end 9 --end
10 --task 2 10 --task 2
(...skipping 26 matching lines...) Expand all
37 --task 4 37 --task 4
38 INSERT INTO pgsz VALUES(4, eval('PRAGMA page_size')); 38 INSERT INTO pgsz VALUES(4, eval('PRAGMA page_size'));
39 --end 39 --end
40 --task 5 40 --task 5
41 INSERT INTO pgsz VALUES(5, eval('PRAGMA page_size')); 41 INSERT INTO pgsz VALUES(5, eval('PRAGMA page_size'));
42 --end 42 --end
43 --source multiwrite01.test 43 --source multiwrite01.test
44 --wait all 44 --wait all
45 SELECT sz FROM pgsz; 45 SELECT sz FROM pgsz;
46 --match 16384 16384 16384 16384 16384 46 --match 16384 16384 16384 16384 16384
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698