diff options
author | Josh Matthews <josh@joshmatthews.net> | 2017-06-19 16:52:16 -0400 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2017-10-05 00:43:03 +0200 |
commit | ca340eca391a6d0bf3fbe3563f230e9f85cce9cb (patch) | |
tree | 9bf1106f8867875f223f731dfd0a1cc99fd97340 /python/mach_bootstrap.py | |
parent | d9baadd3dfd573ed3cab53dbc8c58d97c0377e15 (diff) | |
download | servo-ca340eca391a6d0bf3fbe3563f230e9f85cce9cb.tar.gz servo-ca340eca391a6d0bf3fbe3563f230e9f85cce9cb.zip |
Use upstream wptrunner from web-platform-tests.
Diffstat (limited to 'python/mach_bootstrap.py')
-rw-r--r-- | python/mach_bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/mach_bootstrap.py b/python/mach_bootstrap.py index f34689993a7..889a63f312c 100644 --- a/python/mach_bootstrap.py +++ b/python/mach_bootstrap.py @@ -115,7 +115,7 @@ def wpt_harness_path(is_firefox, topdir, *paths): if is_firefox: rel = os.path.join(wpt_root, "tests", "tools", "wptrunner") else: - rel = os.path.join(wpt_root, "harness") + rel = os.path.join(wpt_root, "web-platform-tests", "tools", "wptrunner") return os.path.join(topdir, rel, *paths) |