X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=tests%2Fruntc.c;h=e376070bb1f7038655816cee075dd93007b74760;hb=d45058e87e7045fef1b7c4425de1917a554545f7;hp=cd3d44983fe0598d9d609ea4e8dea5683c9c125a;hpb=2372b1998ae5d252433d7a7a07744ba2ea81b96e;p=libsigrokdecode.git diff --git a/tests/runtc.c b/tests/runtc.c index cd3d449..e376070 100644 --- a/tests/runtc.c +++ b/tests/runtc.c @@ -688,8 +688,8 @@ int main(int argc, char **argv) struct channel *channel; struct option *option; struct output *op; - int ret; - char c, *opt_infile, **kv, **opstr; + int ret, c; + char *opt_infile, **kv, **opstr; op = malloc(sizeof(struct output)); op->pd = NULL; @@ -759,6 +759,9 @@ int main(int argc, char **argv) op->type = SRD_OUTPUT_BINARY; else if (!strcmp(opstr[1], "python")) op->type = SRD_OUTPUT_PYTHON; + else if (!strcmp(opstr[1], "exception")) + /* Doesn't matter, we just need it to bomb out. */ + op->type = SRD_OUTPUT_PYTHON; else { ERR("Unknown output type '%s'", opstr[1]); g_strfreev(opstr);