Skip to content

Commit

Permalink
tests: checksrc compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
jay committed Dec 19, 2016
1 parent d00f2a8 commit c2402b6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion lib/checksrc.pl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
'UNUSEDIGNORE' => 'a warning ignore was not used',
'OPENCOMMENT' => 'file ended with a /* comment still "open"',
'ASTERISKSPACE' => 'pointer declared with space after asterisk',
'ASTERISKNOSPACE' => 'pointer declared without space before asterisk'
'ASTERISKNOSPACE' => 'pointer declared without space before asterisk',
'ASSIGNWITHINCONDITION' => 'assignment within conditional expression'
);

sub readwhitelist {
Expand Down
2 changes: 1 addition & 1 deletion src/tool_hugehelp.c.cvs
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@

void hugehelp(void)
{
puts ( "This is a silly replacement for the actual file.");
puts("This is a silly replacement for the actual file.");
}
2 changes: 2 additions & 0 deletions tests/libtest/test.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
*
***************************************************************************/

/* !checksrc! disable ASSIGNWITHINCONDITION all */

/* Now include the curl_setup.h file from libcurl's private libdir (the source
version, but that might include "curl_config.h" from the build dir so we
need both of them in the include path), so that we get good in-depth
Expand Down
2 changes: 1 addition & 1 deletion tests/server/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ extern const char *serverlogfile;

#undef perror
#define perror(m) win32_perror(m)
void win32_perror (const char *msg);
void win32_perror(const char *msg);
#endif /* WIN32 */

#ifdef USE_WINSOCK
Expand Down

0 comments on commit c2402b6

Please sign in to comment.