summaryrefslogtreecommitdiffstats
path: root/llvm/utils/lit/tests/Inputs/shtest-env/print_environment.py
blob: af6127670b8b532678be62dfc684b137bca2f04e (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python

from __future__ import print_function
import os

sorted_environment = sorted(os.environ.items())

for name,value in sorted_environment:
    print(name,'=',value)
OpenPOWER on IntegriCloud