mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
15 lines
193 B
C
15 lines
193 B
C
|
|
||
|
#include <tap.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main() {
|
||
|
plan(4);
|
||
|
ok(1, NULL);
|
||
|
ok(1, NULL);
|
||
|
SKIP_BLOCK_IF(1, 2, "No point") {
|
||
|
ok(1, NULL);
|
||
|
ok(1, NULL);
|
||
|
}
|
||
|
return exit_status();
|
||
|
}
|