1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Rename the SQLITE_OMIT_BUILTIN_TEST compile-time option to SQLITE_UNTESTABLE.

FossilOrigin-Name: f360818737e73ee4f944685a547abc8f14f47819
This commit is contained in:
drh
2016-12-07 15:49:02 +00:00
parent 44c5604ced
commit d12602a9c5
15 changed files with 48 additions and 48 deletions

View File

@@ -3533,7 +3533,7 @@ int sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){
*/
int sqlite3_test_control(int op, ...){
int rc = 0;
#ifdef SQLITE_OMIT_BUILTIN_TEST
#ifdef SQLITE_UNTESTABLE
UNUSED_PARAMETER(op);
#else
va_list ap;
@@ -3870,7 +3870,7 @@ int sqlite3_test_control(int op, ...){
}
}
va_end(ap);
#endif /* SQLITE_OMIT_BUILTIN_TEST */
#endif /* SQLITE_UNTESTABLE */
return rc;
}