1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-09 14:21:03 +03:00

Add a case to permutations.test to run tests with the IOCAP_SAFEAPPEND property set. (CVS 5693)

FossilOrigin-Name: 80bdaafa77ec5c967f633eaaf5ee6f493a6e5a56
This commit is contained in:
danielk1977
2008-09-12 10:22:40 +00:00
parent 540cf6a192
commit 755339ec0f
4 changed files with 34 additions and 13 deletions

View File

@@ -14,7 +14,7 @@
** different device types (by overriding the return values of the
** xDeviceCharacteristics() and xSectorSize() methods).
**
** $Id: test_devsym.c,v 1.7 2008/06/06 11:11:26 danielk1977 Exp $
** $Id: test_devsym.c,v 1.8 2008/09/12 10:22:40 danielk1977 Exp $
*/
#if SQLITE_TEST /* This file is used for testing only */
@@ -234,10 +234,14 @@ static int devsymOpen(
int flags,
int *pOutFlags
){
int rc;
devsym_file *p = (devsym_file *)pFile;
pFile->pMethods = &devsym_io_methods;
p->pReal = (sqlite3_file *)&p[1];
return sqlite3OsOpen(g.pVfs, zName, p->pReal, flags, pOutFlags);
rc = sqlite3OsOpen(g.pVfs, zName, p->pReal, flags, pOutFlags);
if( p->pReal->pMethods ){
pFile->pMethods = &devsym_io_methods;
}
return rc;
}
/*