From 0e317ed9b19ed9365077ad57653ec036ffa54f7b Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Tue, 20 Aug 2019 15:21:28 -0400 Subject: [PATCH] test-runner: print if haveged fails to start If haveged is not installed it attempts to start but exits with no indication of what happened. --- tools/test-runner.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/test-runner.c b/tools/test-runner.c index 97ce439a..5cb12dc4 100644 --- a/tools/test-runner.c +++ b/tools/test-runner.c @@ -2280,8 +2280,10 @@ static void run_auto_tests(void) if (!start_dbus_daemon()) goto exit; - if (!start_haveged()) + if (!start_haveged()) { + l_error("Failed to start haveged"); goto exit; + } test_stat_queue = l_queue_new();