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 994af53395.
This commit is contained in:
Luca Boccassi
2025-09-13 14:45:54 +01:00
committed by Zbigniew Jędrzejewski-Szmek
parent 8a9ab3dbbc
commit 8fac2eb212

View File

@@ -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