diff options
author | Martin Pitt <martin@piware.de> | 2017-02-14 22:33:52 +0100 |
---|---|---|
committer | Martin Pitt <martin@piware.de> | 2017-02-16 21:36:30 +0100 |
commit | 3e29e810ae48c96c17fdaca7ce9da9378eb4056d (patch) | |
tree | f173b2beaa5f6b821a6ffd56b09ca23fb3e8791e /src/test/test-path.c | |
parent | test: clarify error message if test data directory does not exist (diff) | |
download | systemd-3e29e810ae48c96c17fdaca7ce9da9378eb4056d.tar.xz systemd-3e29e810ae48c96c17fdaca7ce9da9378eb4056d.zip |
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.c | 2 |
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; |