Fixed errors.c.
This commit is contained in:
parent
001e439a9b
commit
9ceed7c62d
|
@ -1,5 +1,7 @@
|
||||||
// 28 may 2019
|
// 28 may 2019
|
||||||
#include "test.h"
|
#include "test.h"
|
||||||
|
#include "thread.h"
|
||||||
|
#include "../common/testhooks.h"
|
||||||
|
|
||||||
// Do not put any test cases in this file; they will not be run.
|
// Do not put any test cases in this file; they will not be run.
|
||||||
|
|
||||||
|
@ -71,11 +73,11 @@ void checkProgrammerErrorsFull(const char *file, long line, const struct checkEr
|
||||||
const struct checkErrorCase *c;
|
const struct checkErrorCase *c;
|
||||||
struct checkProgrammerErrorParams p;
|
struct checkProgrammerErrorParams p;
|
||||||
|
|
||||||
uiprivTestHookReportProgrammerError(handleProgrammerError, p);
|
|
||||||
memset(&p, 0, sizeof (struct checkProgrammerErrorParams));
|
memset(&p, 0, sizeof (struct checkProgrammerErrorParams));
|
||||||
p.file = file;
|
p.file = file;
|
||||||
p.line = line;
|
p.line = line;
|
||||||
p.inThread = inThread;
|
p.inThread = inThread;
|
||||||
|
uiprivTestHookReportProgrammerError(handleProgrammerError, &p);
|
||||||
for (c = cases; c->name != NULL; c++) {
|
for (c = cases; c->name != NULL; c++) {
|
||||||
p.caught = false;
|
p.caught = false;
|
||||||
p.f = c->f;
|
p.f = c->f;
|
||||||
|
|
Loading…
Reference in New Issue