mariadb/unittest/examples/skip-t.c

15 lines
232 B
C
Raw Normal View History

#include <tap.h>
#include <stdlib.h>
int main() {
plan(4);
ok(1, NULL);
ok(1, NULL);
SKIP_BLOCK_IF(1, 2, "Example of skipping a few test points in a test") {
ok(1, NULL);
ok(1, NULL);
}
return exit_status();
}