27 lines
662 B
Python
27 lines
662 B
Python
|
# xfail-license
|
||
|
|
||
|
import subprocess
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
os.putenv('RUSTC', os.path.abspath(sys.argv[2]))
|
||
|
os.putenv('TMPDIR', os.path.abspath(sys.argv[3]))
|
||
|
|
||
|
proc = subprocess.Popen(['make', '-C', sys.argv[1]],
|
||
|
stdout = subprocess.PIPE,
|
||
|
stderr = subprocess.PIPE)
|
||
|
out, err = proc.communicate()
|
||
|
i = proc.wait()
|
||
|
|
||
|
if i != 0:
|
||
|
|
||
|
print '----- ' + sys.argv[1] + """ --------------------
|
||
|
------ stdout ---------------------------------------------
|
||
|
""" + out + """
|
||
|
------ stderr ---------------------------------------------
|
||
|
""" + err + """
|
||
|
------ ---------------------------------------------
|
||
|
"""
|
||
|
sys.exit(i)
|
||
|
|