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

Side by Side Diff: third_party/sqlite/src/mptest/crash02.subtest

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 ** This script is called from crash01.test and config02.test and perhaps other 2 ** This script is called from crash01.test and config02.test and perhaps other
3 ** script. After the database file has been set up, make a big rollback 3 ** script. After the database file has been set up, make a big rollback
4 ** journal in client 1, then crash client 1. 4 ** journal in client 1, then crash client 1.
5 ** Then in the other clients, do an integrity check. 5 ** Then in the other clients, do an integrity check.
6 */ 6 */
7 --task 1 leave-hot-journal 7 --task 1 leave-hot-journal
8 --sleep 5 8 --sleep 5
9 --finish 9 --finish
10 PRAGMA cache_size=10; 10 PRAGMA cache_size=10;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 --match ok 44 --match ok
45 --end 45 --end
46 --task 5 integrity_check-5 46 --task 5 integrity_check-5
47 SELECT count(*) FROM t1; 47 SELECT count(*) FROM t1;
48 --match 64 48 --match 64
49 --sleep 100 49 --sleep 100
50 PRAGMA integrity_check(10); 50 PRAGMA integrity_check(10);
51 --match ok 51 --match ok
52 --end 52 --end
53 --wait all 53 --wait all
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698