2019-04-28 12:12:40 -05:00
|
|
|
// 28 april 2019
|
|
|
|
#include "../ui.h"
|
|
|
|
#include "testing.h"
|
2019-05-02 21:03:57 -05:00
|
|
|
#include "timer.h"
|
2019-04-28 12:12:40 -05:00
|
|
|
|
|
|
|
// main.c
|
2019-04-28 12:26:15 -05:00
|
|
|
extern void timeoutMain(testingT *t, void *data);
|
|
|
|
#define timeout_uiMain(t, timeout, failNowOnError) \
|
|
|
|
testingRunWithTimeout(t, timeout, \
|
|
|
|
timeoutMain, NULL, \
|
|
|
|
"uiMain()", failNowOnError);
|