Skip to content

Commit 2cc4f58

Browse files
brsonalexcrichton
authored andcommitted
---
yaml --- r: 110215 b: refs/heads/auto c: 0e85e59 h: refs/heads/master i: 110213: e0b7f47 110211: 623a758 110207: 5111019 v: v3
1 parent 94cb1b8 commit 2cc4f58

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
@@ -13,7 +13,7 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1313
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1414
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1515
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
16-
refs/heads/auto: a6173e19d01ec63741334625a98ecca52a289756
16+
refs/heads/auto: 0e85e599dbcd08e2a0c0e1bfa3cf23ed4eb68197
1717
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1818
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1919
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336

branches/auto/mk/tests.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -904,6 +904,7 @@ $(3)/test/run-make/%-$(1)-T-$(2)-H-$(3).ok: \
904904
@rm -rf $(3)/test/run-make/$$*
905905
@mkdir -p $(3)/test/run-make/$$*
906906
$$(Q)$$(CFG_PYTHON) $(S)src/etc/maketest.py $$(dir $$<) \
907+
$$(MAKE) \
907908
$$(HBIN$(1)_H_$(3))/rustc$$(X_$(3)) \
908909
$(3)/test/run-make/$$* \
909910
"$$(CC_$(3)) $$(CFG_GCCISH_CFLAGS_$(3))" \

branches/auto/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)