/* * sophia database * sphia.org * * Copyright (c) Dmitry Simonenko * BSD License */ #include #include #include #include #include #include #include extern void workflow_test(char*); static void oom_test(void) { workflow_test("debug.error_injection.oom"); } stgroup *oom_group(void) { stgroup *group = st_group("oom"); st_groupadd(group, st_test("test", oom_test)); return group; }