From 44057328a638ca03da0d6eda89fd19367178e6fc Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Fri, 30 Oct 2009 08:48:05 +0100 Subject: fix: testbench was broken by recent ruleset queue changes actually, the runtime dummy was missing some global entities, these have now been added. --- tests/runtime-dummy.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/runtime-dummy.c') diff --git a/tests/runtime-dummy.c b/tests/runtime-dummy.c index 38e6bba1..24431040 100644 --- a/tests/runtime-dummy.c +++ b/tests/runtime-dummy.c @@ -34,12 +34,14 @@ int repeatinterval = 30; int bActExecWhenPrevSusp = 0; int iActExecOnceInterval = 1; int MarkInterval = 30; +void *pMsgQueue = NULL; void cflineClassic(void) {}; void selectorAddList(void) {}; void selectorConstruct(void) {}; void selectorDestruct(void) {}; void getFIOPName(void) {}; +rsRetVal createMainQueue(void) { return RS_RET_ERR; } ruleset_t *pCurrRuleset; /* these are required by some dynamically loaded modules */ -- cgit v1.2.3 From b41e0d51f54a89f489bbf1c1bf5f85d576ae4049 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Tue, 3 Nov 2009 18:48:40 +0100 Subject: some more cleanup along the way ... getting the module structure a bit cleaner ;) --- tests/runtime-dummy.c | 1 - 1 file changed, 1 deletion(-) (limited to 'tests/runtime-dummy.c') diff --git a/tests/runtime-dummy.c b/tests/runtime-dummy.c index 24431040..5a9039bf 100644 --- a/tests/runtime-dummy.c +++ b/tests/runtime-dummy.c @@ -40,7 +40,6 @@ void cflineClassic(void) {}; void selectorAddList(void) {}; void selectorConstruct(void) {}; void selectorDestruct(void) {}; -void getFIOPName(void) {}; rsRetVal createMainQueue(void) { return RS_RET_ERR; } ruleset_t *pCurrRuleset; -- cgit v1.2.3