From 40f04ff58eebc10fc569da9cbda49a66a242b70d Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Tue, 1 May 2018 11:42:57 -0400 Subject: [PATCH] Don't suppress the result of checking the WPT manifest. --- python/servo/testing_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index e8e6d997ffd..b0d07f0821b 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -87,7 +87,7 @@ def run_update(topdir, check_clean=False, rebuild=False, **kwargs): from wptrunner import wptlogging logger = wptlogging.setup(kwargs, {"mach": sys.stdout}) wpt_dir = os.path.abspath(os.path.join(topdir, 'tests', 'wpt')) - manifestupdate.update(logger, wpt_dir, check_clean, rebuild) + return manifestupdate.update(logger, wpt_dir, check_clean, rebuild) @CommandProvider