From: Luca Boccassi Date: Sat, 13 Sep 2025 13:45:54 +0000 (+0100) Subject: Revert "test: propagate log env vars in run-unit-tests.py wrapper" X-Git-Tag: v258~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8fac2eb2120b4768572096ab1ee3e098b8f3688e;p=thirdparty%2Fsystemd.git Revert "test: propagate log env vars in run-unit-tests.py wrapper" The default is already to propagate the env vars, so this was unnecessary and actually creates problem as it removes custom PATHs This reverts commit 994af53395df1b572e9a9addc4c9a5452f427034. --- diff --git a/test/run-unit-tests.py b/test/run-unit-tests.py index 64f50c465c0..de8ac5c26cb 100755 --- a/test/run-unit-tests.py +++ b/test/run-unit-tests.py @@ -35,12 +35,6 @@ def argument_parser(): opts = argument_parser().parse_args() -env = {} -if 'SYSTEMD_LOG_LEVEL' in os.environ: - env['SYSTEMD_LOG_LEVEL'] = os.environ['SYSTEMD_LOG_LEVEL'] -if 'SYSTEMD_LOG_TARGET' in os.environ: - env['SYSTEMD_LOG_TARGET'] = os.environ['SYSTEMD_LOG_TARGET'] - unittestdir = pathlib.Path(__file__).parent.absolute() / 'unit-tests' tests = list(unittestdir.glob('test-*')) @@ -59,7 +53,7 @@ for test in sorted(tests): total.skip += 1 continue - ex = subprocess.run(test, stdin=subprocess.DEVNULL, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=env) + ex = subprocess.run(test, stdin=subprocess.DEVNULL, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) if ex.returncode == 0: print(f'{GREEN}PASS: {name}{RESET_ALL}') total.good += 1