infix
A JIT-Powered FFI Library for C
|
A simple, header-only TAP14-compatible testing framework for C. More...
Go to the source code of this file.
Macros | |
#define | plan(count) ((void)0) |
#define | done() (0) |
#define | bail_out(...) |
#define | ok(cond, ...) (true) |
#define | pass(...) ((void)0) |
#define | fail(...) ((void)0) |
#define | subtest(name) if (0) |
#define | skip(count, ...) ((void)0) |
#define | skip_all(...) ((void)0) |
#define | TODO(reason, ...) if (0) |
#define | diag(...) ((void)0) |
#define | note(...) ((void)0) |
#define | TEST |
A simple, header-only TAP14-compatible testing framework for C.
Copyright (c) 2025 Sanko Robinson
This source code is dual-licensed under the Artistic License 2.0 or the MIT License. You may choose to use this code under the terms of either license.
SPDX-License-Identifier: (Artistic-2.0 OR MIT)
The documentation blocks within this file are licensed under the Creative Commons Attribution 4.0 International License (CC BY 4.0).
SPDX-License-Identifier: CC-BY-4.0
#define bail_out | ( | ... | ) |
#define diag | ( | ... | ) | ((void)0) |
#define done | ( | ) | (0) |
#define fail | ( | ... | ) | ((void)0) |
#define note | ( | ... | ) | ((void)0) |
#define ok | ( | cond, | |
... | |||
) | (true) |
#define pass | ( | ... | ) | ((void)0) |
#define plan | ( | count | ) | ((void)0) |
#define skip | ( | count, | |
... | |||
) | ((void)0) |
#define skip_all | ( | ... | ) | ((void)0) |
#define subtest | ( | name | ) | if (0) |
#define TEST |
#define TODO | ( | reason, | |
... | |||
) | if (0) |