| OLD | NEW | 
|---|
| 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  Loading... | 
| 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 | 
| OLD | NEW | 
|---|