mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +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
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();
|
|
}
|