aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/testing_commands.py
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-03-30 19:58:30 +0530
committerbors-servo <lbergstrom+bors@mozilla.com>2016-03-30 19:58:30 +0530
commite1485718128bff632eff5445583e925ff796bdba (patch)
tree5062e6ed8ecc0be23bdc994e164d2655f24a5eb3 /python/servo/testing_commands.py
parent821afa071e0bb4aa3c48f35b44ab8984a1ec92bc (diff)
parent97f25456efd91b034fb15dc16b1a1123a68567c2 (diff)
downloadservo-e1485718128bff632eff5445583e925ff796bdba.tar.gz
servo-e1485718128bff632eff5445583e925ff796bdba.zip
Auto merge of #10238 - jdm:winunit, r=larsbergstrom
Run unit tests on appveyor <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10238) <!-- Reviewable:end -->
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r--python/servo/testing_commands.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py
index 8140027ae97..4346fe6b7f6 100644
--- a/python/servo/testing_commands.py
+++ b/python/servo/testing_commands.py
@@ -188,7 +188,11 @@ class MachCommands(CommandBase):
for crate in packages:
args += ["-p", "%s_tests" % crate]
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:
return result