diff options
author | stephan <stephan@noemail.net> | 2025-03-08 06:53:06 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2025-03-08 06:53:06 +0000 |
commit | 065c0a612039ca264e7b7f3bfc40409ca3b2c06d (patch) | |
tree | a74383f4944b523e52246c38aea6af9fa050e600 /src/test6.c | |
parent | 7b9407af9037776d7bb3dc4ae50fa92875dabf2e (diff) | |
download | sqlite-065c0a612039ca264e7b7f3bfc40409ca3b2c06d.tar.gz sqlite-065c0a612039ca264e7b7f3bfc40409ca3b2c06d.zip |
Test app/script patches from Jan Nijtmans for cygwin. Add/replace many more sentinel arguments for TCL variadic functions which specifically need a NULL trailing argument. With this, 'make test' on cygwin runs to completion for me, with 134 of 329227 tests failing. MSC build fails the same 13 tests which fail for me in trunk.
FossilOrigin-Name: 84d8fcfca19cd183d05a702d0eb1742bfae462d3383a3db72741a48cefac1058
Diffstat (limited to 'src/test6.c')
-rw-r--r-- | src/test6.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test6.c b/src/test6.c index b57759150..aee7bf12a 100644 --- a/src/test6.c +++ b/src/test6.c @@ -755,12 +755,12 @@ static int processDevSymArgs( ){ Tcl_AppendResult(interp, "Bad option: \"", zOpt, - "\" - must be \"-characteristics\" or \"-sectorsize\"", 0 + "\" - must be \"-characteristics\" or \"-sectorsize\"", NULL ); return TCL_ERROR; } if( i==objc-1 ){ - Tcl_AppendResult(interp, "Option requires an argument: \"", zOpt, "\"",0); + Tcl_AppendResult(interp, "Option requires an argument: \"", zOpt, "\"", NULL); return TCL_ERROR; } @@ -1044,7 +1044,7 @@ static int SQLITE_TCLAPI jtObjCmd( if( objc==3 ){ if( strcmp(zParent, "-default") ){ Tcl_AppendResult(interp, - "bad option \"", zParent, "\": must be -default", 0 + "bad option \"", zParent, "\": must be -default", NULL ); return TCL_ERROR; } |