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

Unified Diff: third_party/sqlite/sqlite-src-3080704/mptest/config01.test

Issue 2363173002: [sqlite] Remove obsolete reference version 3.8.7.4. (Closed)
Patch Set: Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/sqlite/sqlite-src-3080704/mptest/config01.test
diff --git a/third_party/sqlite/sqlite-src-3080704/mptest/config01.test b/third_party/sqlite/sqlite-src-3080704/mptest/config01.test
deleted file mode 100644
index 683ee91143103a1f2f39925b81b0e1ff741e3028..0000000000000000000000000000000000000000
--- a/third_party/sqlite/sqlite-src-3080704/mptest/config01.test
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
-** Configure five tasks in different ways, then run tests.
-*/
---if vfsname() GLOB 'unix'
-PRAGMA page_size=8192;
---task 1
- PRAGMA journal_mode=PERSIST;
- PRAGMA mmap_size=0;
---end
---task 2
- PRAGMA journal_mode=TRUNCATE;
- PRAGMA mmap_size=28672;
---end
---task 3
- PRAGMA journal_mode=MEMORY;
---end
---task 4
- PRAGMA journal_mode=OFF;
---end
---task 4
- PRAGMA mmap_size(268435456);
---end
---source multiwrite01.test
---wait all
-PRAGMA page_size=16384;
-VACUUM;
-CREATE TABLE pgsz(taskid, sz INTEGER);
---task 1
- INSERT INTO pgsz VALUES(1, eval('PRAGMA page_size'));
---end
---task 2
- INSERT INTO pgsz VALUES(2, eval('PRAGMA page_size'));
---end
---task 3
- INSERT INTO pgsz VALUES(3, eval('PRAGMA page_size'));
---end
---task 4
- INSERT INTO pgsz VALUES(4, eval('PRAGMA page_size'));
---end
---task 5
- INSERT INTO pgsz VALUES(5, eval('PRAGMA page_size'));
---end
---source multiwrite01.test
---wait all
-SELECT sz FROM pgsz;
---match 16384 16384 16384 16384 16384
« no previous file with comments | « third_party/sqlite/sqlite-src-3080704/mkso.sh ('k') | third_party/sqlite/sqlite-src-3080704/mptest/config02.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698