diff options
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r-- | python/servo/testing_commands.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index 57f432619a1..0024a425cd5 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -87,7 +87,7 @@ class MachCommands(CommandBase): return self.infer_test_by_dir(params) test_start = time() - for t in ["tidy", "unit", "ref", "content", "wpt"]: + for t in ["tidy", "ref", "content", "wpt", "unit"]: Registrar.dispatch("test-%s" % t, context=self.context) elapsed = time() - test_start @@ -121,6 +121,9 @@ class MachCommands(CommandBase): if c != "servo": ret = ret or cargo_test(c) + print("WARNING: test-unit has probably destroyed your servo binary " + " (see https://github.com/rust-lang/cargo/issues/961 ). You " + " may want to rebuild now.") return ret @Command('test-ref', |