diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2018-01-19 12:52:54 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2018-01-20 15:36:09 +0100 |
commit | 697b9e2b87147a0f3767226c52097549d65b96da (patch) | |
tree | a96860efc9fa6d1200141cf2392c04137b82b28c /python/servo/testing_commands.py | |
parent | a311e0f569f8aba447aeef3034a37ee900720307 (diff) | |
download | servo-697b9e2b87147a0f3767226c52097549d65b96da.tar.gz servo-697b9e2b87147a0f3767226c52097549d65b96da.zip |
Merge net and net_tests
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r-- | python/servo/testing_commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index 56cf12124b0..907f6fa531b 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -231,7 +231,7 @@ class MachCommands(CommandBase): else: test_patterns.append(test) - self_contained_tests = ["gfx", "layout", "msg", "selectors"] + self_contained_tests = ["gfx", "layout", "msg", "net", "selectors"] if not packages: packages = set(os.listdir(path.join(self.context.topdir, "tests", "unit"))) - set(['.DS_Store']) packages |= set(self_contained_tests) @@ -863,7 +863,7 @@ testing/web-platform/mozilla/tests for Servo-only tests""" % reference_path) def update_net_cookies(self): cache_dir = path.join(self.config["tools"]["cache-dir"], "tests") run_file = path.abspath(path.join(PROJECT_TOPLEVEL_PATH, - "tests", "unit", "net", + "components", "net", "tests", "cookie_http_state_utils.py")) run_globals = {"__file__": run_file} execfile(run_file, run_globals) |