1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-18 10:04:04 +03:00

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 */