Lines Matching refs:env
1 #!/usr/bin/env python
246 def report_command(cmd_type, cmd, env=None):
248 if env is not None:
250 for var, val in sorted(env.items())))
345 def run_check(runnable, env=None):
346 report_command('Test command:', runnable, env=env)
348 if env is not None:
350 full_env.update(env)
351 env = full_env
353 proc = subprocess.Popen(runnable, env=env)
413 ret_test |= run_check(test_cmd, env=dict(TZ='UTC'))
481 ret_test |= run_check(test_cmd, env=dict(TZ='America/Los_Angeles'))