Adding missing file

This commit is contained in:
mkindahl@dl145h.mysql.com 2006-08-25 16:11:22 +02:00
parent c120c4c625
commit 0b7dc2689d

View File

@ -0,0 +1,19 @@
#include "my_config.h"
#include <stdlib.h>
#include <tap.h>
/*
This is a simple test to demonstrate what happens if a signal that
generates a core is raised.
Note that this test will stop all further testing!
*/
int main() {
plan(3);
ok(1, "First test");
abort();
return exit_status();
}