Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.

Commit 9911005

Browse files
committed
Attempt to fix #22628 by killing all stdtests
1 parent c91bef3 commit 9911005

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

master/master.cfg

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -907,6 +907,16 @@ def make_and_check_buildfactory(check, android, windows, parallel):
907907
workdir=BUILD_WORKDIR,
908908
command=[MakeCommand(), "clean-llvm"]))
909909

910+
if windows:
911+
taskkill_cmd = ["taskkill", "/T", "/F", "/FI", "IMAGENAME eq stdtest*"]
912+
# FIXME https://github.com/rust-lang/rust/issues/22628
913+
# Windows test hangs cause lots of problems. This tries
914+
# to kill stdtest.
915+
f.addStep(ShellCommand(env=CommandEnv(),
916+
name="taskkill hack",
917+
command=taskkill_cmd,
918+
workdir=WORKDIR))
919+
910920
# msys make is pretty buggy with paralellization
911921
if windows or not parallel:
912922
command = [MakeCommand()]

0 commit comments

Comments
 (0)