diff options
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 |