diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-03-30 19:58:30 +0530 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2016-03-30 19:58:30 +0530 |
commit | e1485718128bff632eff5445583e925ff796bdba (patch) | |
tree | 5062e6ed8ecc0be23bdc994e164d2655f24a5eb3 /python/servo/testing_commands.py | |
parent | 821afa071e0bb4aa3c48f35b44ab8984a1ec92bc (diff) | |
parent | 97f25456efd91b034fb15dc16b1a1123a68567c2 (diff) | |
download | servo-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.py | 6 |
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 |