Skip to content

Commit 9e60c4c

Browse files
brsonalexcrichton
authored andcommitted
---
yaml --- r: 110481 b: refs/heads/try c: 4ab711e h: refs/heads/master i: 110479: 53e113e v: v3
1 parent 6b9accf commit 9e60c4c

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: e415c25bcd81dc1f9a5a3d25d9b48ed2d545336b
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: c7fac4471201977fdb1c0c0a26c87287e12dc644
5-
refs/heads/try: 3dd9500a02f43a16a5d1d9a748d2af24bd87d218
5+
refs/heads/try: 4ab711e90b92e9156a15959d2ce574937583ddfe
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/mk/tests.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -876,6 +876,7 @@ $(3)/test/run-make/%-$(1)-T-$(2)-H-$(3).ok: \
876876
@rm -rf $(3)/test/run-make/$$*
877877
@mkdir -p $(3)/test/run-make/$$*
878878
$$(Q)$$(CFG_PYTHON) $(S)src/etc/maketest.py $$(dir $$<) \
879+
$$(MAKE) \
879880
$$(HBIN$(1)_H_$(3))/rustc$$(X_$(3)) \
880881
$(3)/test/run-make/$$* \
881882
"$$(CC_$(3)) $$(CFG_GCCISH_CFLAGS_$(3))" \

branches/try/src/etc/maketest.py

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,21 @@
1717
print 'ignoring make tests on windows'
1818
sys.exit(0)
1919

20-
os.putenv('RUSTC', os.path.abspath(sys.argv[2]))
21-
os.putenv('TMPDIR', os.path.abspath(sys.argv[3]))
22-
os.putenv('CC', sys.argv[4])
23-
os.putenv('RUSTDOC', os.path.abspath(sys.argv[5]))
24-
filt = sys.argv[6]
25-
ldpath = sys.argv[7]
20+
make = sys.argv[2]
21+
os.putenv('RUSTC', os.path.abspath(sys.argv[3]))
22+
os.putenv('TMPDIR', os.path.abspath(sys.argv[4]))
23+
os.putenv('CC', sys.argv[5])
24+
os.putenv('RUSTDOC', os.path.abspath(sys.argv[6]))
25+
filt = sys.argv[7]
26+
ldpath = sys.argv[8]
2627
if ldpath != '':
2728
os.putenv(ldpath.split('=')[0], ldpath.split('=')[1])
2829

2930
if not filt in sys.argv[1]:
3031
sys.exit(0)
3132
print('maketest: ' + os.path.basename(os.path.dirname(sys.argv[1])))
3233

33-
proc = subprocess.Popen(['make', '-C', sys.argv[1]],
34+
proc = subprocess.Popen([make, '-C', sys.argv[1]],
3435
stdout = subprocess.PIPE,
3536
stderr = subprocess.PIPE)
3637
out, err = proc.communicate()

0 commit comments

Comments
 (0)