[ARM] Fixup pipeline test. NFC
[llvm-complete.git] / utils / lit / tests / Inputs / shtest-env / print_environment.py
blobaf6127670b8b532678be62dfc684b137bca2f04e
1 #!/usr/bin/env python
3 from __future__ import print_function
4 import os
6 sorted_environment = sorted(os.environ.items())
8 for name,value in sorted_environment:
9 print(name,'=',value)