diff options
author | bors-servo <servo-ops@mozilla.com> | 2020-04-18 02:59:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-18 02:59:52 -0400 |
commit | c6ec063a3128e3a1311bb9016e439d8471b7cb29 (patch) | |
tree | f0596038656ad7bcc29c5fe2c414c31798a36c41 /python/servo | |
parent | 7799dccb25ab1afa55133b09e493161a012af825 (diff) | |
parent | b54b3aca641b4392bc5b55ffa5e4fc862fbafa7b (diff) | |
download | servo-c6ec063a3128e3a1311bb9016e439d8471b7cb29.tar.gz servo-c6ec063a3128e3a1311bb9016e439d8471b7cb29.zip |
Auto merge of #26217 - servo:jdm-patch-40, r=asajeffrey
Disable RUST_BACKTRACE in unit tests on macOS.
This works around #26192 which is a new relatively frequent intermittent crash on CI.
Diffstat (limited to 'python/servo')
-rw-r--r-- | python/servo/testing_commands.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index 7bee7633f90..fa6522fa96c 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -278,7 +278,9 @@ class MachCommands(CommandBase): packages.discard('stylo') env = self.build_env(test_unit=True) - env["RUST_BACKTRACE"] = "1" + # FIXME: https://github.com/servo/servo/issues/26192 + if "apple-darwin" not in host_triple(): + env["RUST_BACKTRACE"] = "1" if "msvc" in host_triple(): # on MSVC, we need some DLLs in the path. They were copied |