repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ARM] Fixup pipeline test. NFC
[llvm-complete.git]
/
utils
/
lit
/
tests
/
Inputs
/
shtest-env
/
print_environment.py
blob
af6127670b8b532678be62dfc684b137bca2f04e
1
#!/usr/bin/env python
2
3
from
__future__
import
print_function
4
import
os
5
6
sorted_environment
=
sorted
(
os
.
environ
.
items
())
7
8
for
name
,
value
in
sorted_environment
:
9
print
(
name
,
'='
,
value
)