From f72e4797f4d3397a76769b03253367f0210083b0 Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Thu, 21 Nov 2013 16:23:57 +0200 Subject: [PATCH] tests: allow weston test plugin to keep on running If the environment variable WESTON_TEST_CLIENT_PATH is not set, do not quit Weston in the test plugin. This allows one to start Weston with the test plugin manually, and then run any tests also manually, while observing Weston's behaviour over time. This is useful for: - Running a test multiple times and checking if Weston leaks (e.g. with Valgrind) - Running tests manually on a backend that is not x11 or wayland, especially the backends that require weston-launch, and therefore cannot be used with the 'make check' machinery. This change should not affect 'make check' behaviour, because there WESTON_TEST_CLIENT_PATH is always set. Cc: U. Artie Eoff Signed-off-by: Pekka Paalanen --- tests/weston-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/weston-test.c b/tests/weston-test.c index 0536be4..aebe57d 100644 --- a/tests/weston-test.c +++ b/tests/weston-test.c @@ -213,7 +213,7 @@ idle_launch_client(void *data) path = getenv("WESTON_TEST_CLIENT_PATH"); if (path == NULL) - exit(EXIT_FAILURE); + return; pid = fork(); if (pid == -1) exit(EXIT_FAILURE); -- 2.7.4