Go to the source code of this file.
◆ PROBE_FAIL
| #define PROBE_FAIL |
( |
|
stats, |
|
|
|
fmt, |
|
|
|
... |
|
) |
| |
Value: do { \
(stats)->failed++; \
ramsyscall_printf("FAIL " fmt "\n", ##__VA_ARGS__); \
} while (0)
◆ PROBE_INFO
| #define PROBE_INFO |
( |
|
stats, |
|
|
|
fmt, |
|
|
|
... |
|
) |
| |
Value: do { \
ramsyscall_printf("INFO " fmt "\n", ##__VA_ARGS__); \
} while (0)
◆ PROBE_PASS
| #define PROBE_PASS |
( |
|
stats, |
|
|
|
fmt, |
|
|
|
... |
|
) |
| |
Value: do { \
(stats)->passed++; \
ramsyscall_printf("PASS " fmt "\n", ##__VA_ARGS__); \
} while (0)
◆ PROBE_RESULT
| #define PROBE_RESULT |
( |
|
fmt, |
|
|
|
... |
|
) |
| |
Value: do { \
ramsyscall_printf("RESULT " fmt "\n", ##__VA_ARGS__); \
} while (0)