# segfault-suite
A small test framework that catches segmentation faults.
## Dependencies1. POSIX compliant OS (`fork`, `waitpid`)
## Usage```C#include"test-lib.h"intbadTest(){int*ptr=(int*)0;*ptr=5;return0;}intmain(){syncTest("badTest","it segfaulted",badTest);return0;}```