test-path: decrease variable scope

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2020-07-22 12:12:54 +02:00
parent 8f8c7801e9
commit e3643b00a8

View file

@ -346,10 +346,8 @@ int main(int argc, char *argv[]) {
NULL,
};
_cleanup_(rm_rf_physical_and_freep) char *runtime_dir = NULL;
_cleanup_free_ char *test_path = NULL;
const test_function_t *test = NULL;
Manager *m = NULL;
_cleanup_(rm_rf_physical_and_freep) char *runtime_dir = NULL;
umask(022);
@ -359,7 +357,8 @@ int main(int argc, char *argv[]) {
assert_se(set_unit_path(test_path) >= 0);
assert_se(runtime_dir = setup_fake_runtime_dir());
for (test = tests; test && *test; test++) {
for (const test_function_t *test = tests; test && *test; test++) {
Manager *m = NULL;
int r;
/* We create a clean environment for each test */