More output + possible fix

This commit is contained in:
Tom Hacohen 2013-06-10 16:34:54 +01:00
parent 61c3e288c6
commit 9b0fb72d66
1 changed files with 3 additions and 1 deletions

View File

@ -25,6 +25,8 @@ _job_deleted_cb(void *data, int type EINA_UNUSED, void *event)
List_Entry *ent = ecore_exe_data_get(msg->exe);
exactness_ctx.errors = eina_list_append(exactness_ctx.errors, ent);
}
List_Entry *ent2 = ecore_exe_data_get(msg->exe);
fprintf(stderr, "Finished '%s' exit code: '%d'\n", ent2->name, msg->exit_code);
ctx->jobs++;
@ -68,7 +70,7 @@ _job_dispatch(List_Entry *ent, Scheduler_Ctx *ctx)
}
fprintf(stderr, "Executing '%s'\n", buf);
exe = ecore_exe_pipe_run(buf, ECORE_EXE_TERM_WITH_PARENT, ent);
exe = ecore_exe_pipe_run(buf, ECORE_EXE_TERM_WITH_PARENT, ctx);
if (!exe)
{