Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
43652dec
Commit
43652dec
authored
Oct 07, 2010
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tap: make examples compilable by ccanlint.
In particular, we can assume "somefunc()" exists in our examples.
parent
aba65f26
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
13 deletions
+20
-13
ccan/tap/tap.h
ccan/tap/tap.h
+20
-13
No files found.
ccan/tap/tap.h
View file @
43652dec
...
...
@@ -53,7 +53,7 @@ void plan_tests(unsigned int tests);
* file name, line number, and the expression itself.
*
* Example:
* ok1(
init_subsystem
() == 1);
* ok1(
somefunc
() == 1);
*/
# define ok1(e) ((e) ? \
_gen_result(1, __func__, __FILE__, __LINE__, "%s", #e) : \
...
...
@@ -69,8 +69,8 @@ void plan_tests(unsigned int tests);
* than simply the expression itself.
*
* Example:
* ok1(
init_subsystem
() == 1);
* ok(
init_subsystem() == 0, "Second initialization
should fail");
* ok1(
somefunc
() == 1);
* ok(
somefunc() == 0, "Second somefunc()
should fail");
*/
# define ok(e, ...) ((e) ? \
_gen_result(1, __func__, __FILE__, __LINE__, \
...
...
@@ -86,11 +86,11 @@ void plan_tests(unsigned int tests);
* branch and fail() in another.
*
* Example:
*
x = do_something
();
* if (
!checkable(x) || check_value(x)
)
* pass("
do_something
() returned a valid value");
*
int x = somefunc
();
* if (
x > 0
)
* pass("
somefunc
() returned a valid value");
* else
* fail("
do_something
() returned an invalid value");
* fail("
somefunc
() returned an invalid value");
*/
# define pass(...) ok(1, __VA_ARGS__)
...
...
@@ -148,7 +148,7 @@ void diag(const char *fmt, ...) PRINTF_ATTRIBUTE(1, 2);
*
* Example:
* #ifdef HAVE_SOME_FEATURE
* ok1(
test_some_feature
());
* ok1(
somefunc
());
* #else
* skip(1, "Don't have SOME_FEATURE");
* #endif
...
...
@@ -174,6 +174,11 @@ void skip(unsigned int n, const char *fmt, ...) PRINTF_ATTRIBUTE(2, 3);
* put tests in your testing script (always a good idea).
*
* Example:
* static bool dwim(void)
* {
* return false; // NYI
* }
* ...
* todo_start("dwim() not returning true yet");
* ok(dwim(), "Did what the user wanted");
* todo_end();
...
...
@@ -213,7 +218,7 @@ int exit_status(void);
* Example:
* plan_no_plan();
* while (random() % 2)
* ok1(some
_test
());
* ok1(some
func
());
* exit(exit_status());
*/
void
plan_no_plan
(
void
);
...
...
@@ -228,11 +233,13 @@ void plan_no_plan(void);
* in the running kernel) use plan_skip_all() instead of plan_tests().
*
* Example:
*
if (!have_some_feature) {
*
plan_skip_all("Need some_feature
support");
*
#ifndef HAVE_SOME_FEATURE
*
plan_skip_all("Need SOME_FEATURE
support");
* exit(exit_status());
*
}
*
#else
* plan_tests(13);
* ...
* #endif
*/
void
plan_skip_all
(
const
char
*
reason
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment