mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
8d898d3798
Added 'test' target to build and run tests. Added documentation. Added README.txt files. Fixing problem with initialization of the Test::Harness::Straps replacement. Added code to filter out non- test directories.
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();
|
|
}
|