From: Pekka Paalanen Date: Fri, 1 Nov 2019 14:27:07 +0000 (+0200) Subject: tests: write image to current directory by default X-Git-Tag: upstream/9.0.0~258 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2c73b673a7f3b882797a1412dec2cbbdb6cee1f5;p=platform%2Fupstream%2Fweston.git 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 --- 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; }