llvm-for-llvmta/utils/lit/tests/Inputs/shtest-env/print_environment.py

10 lines
185 B
Python
Raw Normal View History

2022-04-25 10:02:23 +02:00
#!/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)