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

Add the "devtest" makefile target that runs both fuzztest and testrunner.

FossilOrigin-Name: c81398c6215d6d1bc7a15b6be9bb1f81effd430ff0a7c86158372accfa77814c
This commit is contained in:
drh
2023-02-05 17:40:03 +00:00
parent e88b209874
commit 9ce8643676
6 changed files with 23 additions and 12 deletions

View File

@ -102,9 +102,8 @@ int sql_exec_changeset(
#ifdef SQLITE_DEBUG
static int sqlite3_test_changeset(int, void *, char **);
static void assert_changeset_is_ok(int n, void *p){
int rc = 0;
char *z = 0;
rc = sqlite3_test_changeset(n, p, &z);
(void)sqlite3_test_changeset(n, p, &z);
assert( z==0 );
}
#else