2013-11-16 19:07:32 -06:00
|
|
|
# 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]))
|
2013-11-28 20:03:38 -06:00
|
|
|
os.putenv('CC', sys.argv[4])
|
2013-12-17 11:05:36 -06:00
|
|
|
os.putenv('RUSTDOC', os.path.abspath(sys.argv[5]))
|
2014-01-03 13:16:52 -06:00
|
|
|
filt = sys.argv[6]
|
|
|
|
|
|
|
|
if not filt in sys.argv[1]:
|
|
|
|
sys.exit(0)
|
|
|
|
print('maketest: ' + os.path.basename(os.path.dirname(sys.argv[1])))
|
2013-11-16 19:07:32 -06:00
|
|
|
|
|
|
|
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)
|
|
|
|
|