mirror of
https://github.com/servo/servo.git
synced 2025-07-24 15:50:21 +01:00
Always use backtraces on appveyor.
This commit is contained in:
parent
04df5decee
commit
55bc3fdccb
1 changed files with 5 additions and 1 deletions
|
@ -207,7 +207,11 @@ class MachCommands(CommandBase):
|
||||||
for crate in packages:
|
for crate in packages:
|
||||||
args += ["-p", "%s_tests" % crate]
|
args += ["-p", "%s_tests" % crate]
|
||||||
args += test_patterns
|
args += test_patterns
|
||||||
result = call(args, env=self.build_env(), cwd=self.servo_crate())
|
|
||||||
|
env = self.build_env()
|
||||||
|
env["RUST_BACKTRACE"] = "1"
|
||||||
|
|
||||||
|
result = call(args, env=env, cwd=self.servo_crate())
|
||||||
if result != 0:
|
if result != 0:
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue