summaryrefslogtreecommitdiff
path: root/src/test/test-path.c
diff options
context:
space:
mode:
authorMartin Pitt <martin@piware.de>2017-02-14 22:33:52 +0100
committerMartin Pitt <martin@piware.de>2017-02-16 21:36:30 +0100
commit3e29e810ae48c96c17fdaca7ce9da9378eb4056d (patch)
treef173b2beaa5f6b821a6ffd56b09ca23fb3e8791e /src/test/test-path.c
parent31f8b331c77160019bb282c8b722ace5c9c290d4 (diff)
downloadsystemd-3e29e810ae48c96c17fdaca7ce9da9378eb4056d.tar.gz
test: setup test data dir before fake runtime dir
That way, if the test directory does not exist we don't leave behind temporary files (as in that case or on test failure the cleanup actions don't run).
Diffstat (limited to 'src/test/test-path.c')
-rw-r--r--src/test/test-path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-path.c b/src/test/test-path.c
index d09df3e8a5..7f108440b1 100644
--- a/src/test/test-path.c
+++ b/src/test/test-path.c
@@ -262,8 +262,8 @@ int main(int argc, char *argv[]) {
log_parse_environment();
log_open();
- assert_se(runtime_dir = setup_fake_runtime_dir());
assert_se(set_unit_path(TEST_DATA_DIR("/test-path/")) >= 0);
+ assert_se(runtime_dir = setup_fake_runtime_dir());
for (test = tests; test && *test; test++) {
int r;