From 2c73b673a7f3b882797a1412dec2cbbdb6cee1f5 Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Fri, 1 Nov 2019 16:27:07 +0200 Subject: [PATCH] tests: write image to current directory by default This reverts 50b7b708352dbf0d6670d9ae5668e3c215e28662. We didn't make Meson create a logs directory, so writing the images fails because the directory does not exist. If you run a test without Meson, there is even less expectation that it would write somewhere else than CWD by default. Signed-off-by: Pekka Paalanen --- tests/weston-test-client-helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/weston-test-client-helper.c b/tests/weston-test-client-helper.c index f7d7df51..5523844c 100644 --- a/tests/weston-test-client-helper.c +++ b/tests/weston-test-client-helper.c @@ -1010,7 +1010,7 @@ output_path(void) char *path = getenv("WESTON_TEST_OUTPUT_PATH"); if (!path) - return "./logs"; + return "."; return path; }