aboutsummaryrefslogtreecommitdiff
path: root/llvm/utils/lit/tests/Inputs/shtest-not/print_environment.py
blob: c7070d4141702ab5fe50e5764d5e4937360c8ce0 (plain)
1
2
3
4
5
6
7
from __future__ import print_function
import os


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