diff options
author | drh <drh@noemail.net> | 2015-12-03 01:48:32 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-12-03 01:48:32 +0000 |
commit | c18ed977e8d7e9e7d0d2917013b24e8a286628df (patch) | |
tree | 00249b109baa7ae791f774a67f760eb9f4189c37 /test/sysfault.test | |
parent | f7ce4291a94573cdb04e5f3fcf59ed9e69226479 (diff) | |
download | sqlite-c18ed977e8d7e9e7d0d2917013b24e8a286628df.tar.gz sqlite-c18ed977e8d7e9e7d0d2917013b24e8a286628df.zip |
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
Diffstat (limited to 'test/sysfault.test')
-rw-r--r-- | test/sysfault.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sysfault.test b/test/sysfault.test index 92fb534dd..4c3d34dbb 100644 --- a/test/sysfault.test +++ b/test/sysfault.test @@ -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; |