From: Lucas De Marchi Date: Wed, 25 Jan 2012 22:25:46 +0000 (-0200) Subject: testsuite: remind users to build tools X-Git-Tag: v5~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e3b9d2e8cf295957ddad359abc80228a027ebf7;p=thirdparty%2Fkmod.git testsuite: remind users to build tools --- diff --git a/testsuite/testsuite.c b/testsuite/testsuite.c index 3c8b03fb..bb0dacdb 100644 --- a/testsuite/testsuite.c +++ b/testsuite/testsuite.c @@ -123,11 +123,12 @@ static int test_run_spawned(const struct test *t) return EXIT_FAILURE; } -int test_spawn_prog(const char *prog, const char *args[]) +int test_spawn_prog(const char *prog, const char *const args[]) { execv(prog, (char *const *) args); - ERR("failed to spawn %s ", prog); + ERR("failed to spawn %s\n", prog); + ERR("did you forget to build tools?\n"); return EXIT_FAILURE; }