diff options
author | drh <drh@noemail.net> | 2011-12-19 00:31:09 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2011-12-19 00:31:09 +0000 |
commit | 1eaaf93a83c198ad0d6fad3f625ca33f07dcc8db (patch) | |
tree | 28b6746f000141c2dce8838b012baf6465b5593c /src/test_vfs.c | |
parent | 374f4a0447bdd75feca0d59555e374072e84fb4a (diff) | |
download | sqlite-1eaaf93a83c198ad0d6fad3f625ca33f07dcc8db.tar.gz sqlite-1eaaf93a83c198ad0d6fad3f625ca33f07dcc8db.zip |
Some fixes to the test suite so that it works with ZERO_DAMAGE set to true.
Still lots more problems remain.
FossilOrigin-Name: 41891b231e20a1d32b1d7449e7863470eb38ca0a
Diffstat (limited to 'src/test_vfs.c')
-rw-r--r-- | src/test_vfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test_vfs.c b/src/test_vfs.c index 33640c9c7..2c985a7db 100644 --- a/src/test_vfs.c +++ b/src/test_vfs.c @@ -1208,7 +1208,7 @@ static int testvfs_obj_cmd( iNew |= aFlag[idx].iValue; } - p->iDevchar = iNew; + p->iDevchar = iNew| 0x10000000; } pRet = Tcl_NewObj(); |