mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
5409997d49
rename *.t* to *-t* to be automake-friendly simplify Makefiles test_atomic.c: move to unittest, add GPL comment, fix warnings, convert to tap framework. configure: remove custom tests for available types, use AC_CHECK_TYPE instead x86-gcc.h: fix gcc -ansi errors while maintaining readability ignore: added *-t
14 lines
232 B
C
14 lines
232 B
C
|
|
#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();
|
|
}
|