testsuite: fix retcodes parsing

It was not saving _modules in modules and thus all check were falling in
the fallback "consider a success if module is not in the list". Also the
name check wasn't right: replace with streq().

The parsing could be better implemented, but this is left for later.
This commit is contained in:
Lucas De Marchi 2015-01-14 14:05:24 -02:00
parent 7db094c050
commit af87874f9c
1 changed files with 17 additions and 7 deletions

View File

@ -30,6 +30,8 @@
#include <sys/types.h> #include <sys/types.h>
#include <unistd.h> #include <unistd.h>
#include <shared/util.h>
#include "testsuite.h" #include "testsuite.h"
struct mod { struct mod {
@ -42,7 +44,7 @@ struct mod {
static struct mod *modules; static struct mod *modules;
static bool need_init = true; static bool need_init = true;
static void parse_retcodes(struct mod *_modules, const char *s) static void parse_retcodes(struct mod **_modules, const char *s)
{ {
const char *p; const char *p;
@ -61,7 +63,7 @@ static void parse_retcodes(struct mod *_modules, const char *s)
if (modname == NULL || modname[0] == '\0') if (modname == NULL || modname[0] == '\0')
break; break;
modnamelen = strcspn(s, ":"); modnamelen = strcspn(p, ":");
if (modname[modnamelen] != ':') if (modname[modnamelen] != ':')
break; break;
@ -72,6 +74,7 @@ static void parse_retcodes(struct mod *_modules, const char *s)
l = strtol(p, &end, 0); l = strtol(p, &end, 0);
if (end == p || *end != ':') if (end == p || *end != ':')
break; break;
ret = (int) l; ret = (int) l;
p = end + 1; p = end + 1;
@ -91,8 +94,8 @@ static void parse_retcodes(struct mod *_modules, const char *s)
mod->name[modnamelen] = '\0'; mod->name[modnamelen] = '\0';
mod->ret = ret; mod->ret = ret;
mod->errcode = errcode; mod->errcode = errcode;
mod->next = _modules; mod->next = *_modules;
_modules = mod; *_modules = mod;
} }
} }
@ -101,7 +104,7 @@ static struct mod *find_module(struct mod *_modules, const char *modname)
struct mod *mod; struct mod *mod;
for (mod = _modules; mod != NULL; mod = mod->next) { for (mod = _modules; mod != NULL; mod = mod->next) {
if (strcmp(mod->name, modname)) if (streq(mod->name, modname))
return mod; return mod;
} }
@ -111,6 +114,7 @@ static struct mod *find_module(struct mod *_modules, const char *modname)
static void init_retcodes(void) static void init_retcodes(void)
{ {
const char *s; const char *s;
struct mod *mod;
if (!need_init) if (!need_init)
return; return;
@ -118,11 +122,17 @@ static void init_retcodes(void)
need_init = false; need_init = false;
s = getenv(S_TC_DELETE_MODULE_RETCODES); s = getenv(S_TC_DELETE_MODULE_RETCODES);
if (s == NULL) { if (s == NULL) {
fprintf(stderr, "TRAP delete_module(): missing export %s?\n", ERR("TRAP delete_module(): missing export %s?\n",
S_TC_DELETE_MODULE_RETCODES); S_TC_DELETE_MODULE_RETCODES);
} }
parse_retcodes(modules, s); parse_retcodes(&modules, s);
for (mod = modules; mod != NULL; mod = mod->next) {
LOG("Added module to test delete_module:\n");
LOG("\tname=%s ret=%d errcode=%d\n",
mod->name, mod->ret, mod->errcode);
}
} }
TS_EXPORT long delete_module(const char *name, unsigned int flags); TS_EXPORT long delete_module(const char *name, unsigned int flags);