diff options
| author | Tom Yu <tlyu@mit.edu> | 2009-10-31 00:48:38 +0000 |
|---|---|---|
| committer | Tom Yu <tlyu@mit.edu> | 2009-10-31 00:48:38 +0000 |
| commit | 02d6bcbc98a214e7aeaaa9f45f0db8784a7b743b (patch) | |
| tree | 61b9147863cd8be3eff63903dc36cae168254bd5 /src/ccapi/test/test_ccapi_check.h | |
| parent | 162ab371748cba0cc6f172419bd6e71fa04bb878 (diff) | |
| download | krb5-02d6bcbc98a214e7aeaaa9f45f0db8784a7b743b.tar.gz krb5-02d6bcbc98a214e7aeaaa9f45f0db8784a7b743b.tar.xz krb5-02d6bcbc98a214e7aeaaa9f45f0db8784a7b743b.zip | |
make mark-cstyle
make reindent
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23100 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/ccapi/test/test_ccapi_check.h')
| -rw-r--r-- | src/ccapi/test/test_ccapi_check.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ccapi/test/test_ccapi_check.h b/src/ccapi/test/test_ccapi_check.h index c05a5152e..0a953481a 100644 --- a/src/ccapi/test/test_ccapi_check.h +++ b/src/ccapi/test/test_ccapi_check.h @@ -7,21 +7,21 @@ #include "test_ccapi_globals.h" int _check_if(int expression, const char *file, int line, const char *expression_string, const char *format, ...); - + #define check_int(a, b) \ check_if(a != b, NULL) /* * if expression evaluates to true, check_if increments the failure_count and prints: - * + * * check_if(a!=a, NULL); - * ==> "/path/to/file:line: a!=a" - * + * ==> "/path/to/file:line: a!=a" + * * check_if(a!=a, "This shouldn't be happening"); * ==> "/path/to/file:line: This shouldn't be happening" - * + * * check_if(a!=a, "This has happened %d times now", 3); - * ==> "/path/to/file:line: This has happened 3 times now" + * ==> "/path/to/file:line: This has happened 3 times now" */ #define check_if(expression, format, ...) \ |
