1#include "tests/test_internal.h"
2
3TEST_GROUP_DECLARE(log, .intensity_desc = {
4 .curve = SCALE_PIECEWISE_LOG,
5 .unit = "iters",
6 });
7
8static void log_event(const char *msg) {
9 (void) msg;
10}
11
12TEST_DECLARE_SMOKE(log, smoke) {
13 log_event(msg: "smoke test message");
14 return TEST_SUCCESS;
15}
16