llvm/llvm/utils/lit/tests/Inputs/shtest-not/print_environment.py

from __future__ import print_function
import os


def execute():
    for name in ["FOO", "BAR"]:
        print(name, "=", os.environ.get(name, "[undefined]"))