diff options
Diffstat (limited to 'app/xauth/tests/test_xauth.c')
-rw-r--r-- | app/xauth/tests/test_xauth.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/xauth/tests/test_xauth.c b/app/xauth/tests/test_xauth.c index f4265ce19..8e9c2a2f8 100644 --- a/app/xauth/tests/test_xauth.c +++ b/app/xauth/tests/test_xauth.c @@ -1,6 +1,10 @@ +#include <stdio.h> +#include <stdlib.h> #include <unistd.h> int main(int argc, char *argv[]) { execlp("cmdtest", "cmdtest", ".", NULL); + perror("Unable to execute 'cmdtest'. Make sure, that it is installed"); + exit(1); } |