1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

A unix VFS change replaces fsync() with fstat() when using SQLITE_NO_SYNC, so

set PRAGMA synchronous=OFF in the sysfault-3 test to avoid erroneously causing
errors in xSync.

FossilOrigin-Name: 4f7f355021f9eb048fffc84e559bfb3fdb1e1e69
This commit is contained in:
drh
2015-12-03 01:48:32 +00:00
parent f7ce4291a9
commit c18ed977e8
3 changed files with 8 additions and 7 deletions

View File

@ -226,6 +226,7 @@ do_faultsim_test 3 -faults vfsfault-* -prep {
faultsim_delete_and_reopen
file_control_chunksize_test db main 8192
execsql {
PRAGMA synchronous=OFF;
CREATE TABLE t1(a, b);
BEGIN;
SELECT * FROM t1;