mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
f543e65564
unittest/examples/no_plan.t.c: Ensure that the "configure" result is used when compiling this module. unittest/examples/skip_all.t.c: Ensure that the configure result is used when compiling this module. unittest/examples/todo.t.c: Ensure that the configure result is used when compiling this module. unittest/mytap/t/basic.t.c: Ensure that the configure result is used when compiling this module.
21 lines
323 B
C
21 lines
323 B
C
|
|
#include "my_config.h"
|
|
|
|
#include <stdlib.h>
|
|
#include <tap.h>
|
|
|
|
int main()
|
|
{
|
|
plan(4);
|
|
ok(1, NULL);
|
|
ok(1, NULL);
|
|
/*
|
|
Tests in the todo region is expected to fail. If they don't,
|
|
something is strange.
|
|
*/
|
|
todo_start("Need to fix these");
|
|
ok(0, NULL);
|
|
ok(0, NULL);
|
|
todo_end();
|
|
return exit_status();
|
|
}
|