diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-06-10 14:40:46 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-06-10 14:40:46 +0200 |
commit | 0f7bea7c3a6ddb0bf43f890c764322faaa3ba561 (patch) | |
tree | ef05aacf5e2aea61ae1fca0748dd6e19997e9c8b /lib/curl_fnmatch.c | |
parent | d5cc77b7449316b6c8374968594f718df567ef7a (diff) | |
download | curl-0f7bea7c3a6ddb0bf43f890c764322faaa3ba561.tar.gz |
unittest: mark all unit tested functions
With "@unittest: [num]" in the header comment for each tested function.
Shows we have a log way to go still...
Diffstat (limited to 'lib/curl_fnmatch.c')
-rw-r--r-- | lib/curl_fnmatch.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/curl_fnmatch.c b/lib/curl_fnmatch.c index b1c91ad1b..e18f52eab 100644 --- a/lib/curl_fnmatch.c +++ b/lib/curl_fnmatch.c @@ -413,6 +413,9 @@ static int loop(const unsigned char *pattern, const unsigned char *string) } } +/* + * @unittest: 1307 + */ int Curl_fnmatch(void *ptr, const char *pattern, const char *string) { (void)ptr; /* the argument is specified by the curl_fnmatch_callback |