| OLD | NEW |
| 1 # 2010 November 1 | 1 # 2010 November 1 |
| 2 # | 2 # |
| 3 # The author disclaims copyright to this source code. In place of | 3 # The author disclaims copyright to this source code. In place of |
| 4 # a legal notice, here is a blessing: | 4 # a legal notice, here is a blessing: |
| 5 # | 5 # |
| 6 # May you do good and not evil. | 6 # May you do good and not evil. |
| 7 # May you find forgiveness for yourself and forgive others. | 7 # May you find forgiveness for yourself and forgive others. |
| 8 # May you share freely, never taking more than you give. | 8 # May you share freely, never taking more than you give. |
| 9 # | 9 # |
| 10 #*********************************************************************** | 10 #*********************************************************************** |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 sqlite3 db2 test.db -vfs tvfsshm | 175 sqlite3 db2 test.db -vfs tvfsshm |
| 176 catchsql { SELECT * FROM t1 } db2 | 176 catchsql { SELECT * FROM t1 } db2 |
| 177 } {1 {database is locked}} | 177 } {1 {database is locked}} |
| 178 db close | 178 db close |
| 179 db2 close | 179 db2 close |
| 180 | 180 |
| 181 tvfs delete | 181 tvfs delete |
| 182 tvfsshm delete | 182 tvfsshm delete |
| 183 | 183 |
| 184 finish_test | 184 finish_test |
| OLD | NEW |