Skip to content

Commit 31a9f32

Browse files
author
Jason Orendorff
committed
Bug 1503012 - Part 2: Shim some web-platform-tests for streams into the jit-tests. r=arai,chmanchester
This is an egregious hack. The web-platform-tests were not meant to run in the shell. The eight tests that are included are the ones that we pass with flying colors. In most of the others, we still have a failure or two. Differential Revision: https://phabricator.services.mozilla.com/D11533 --HG-- rename : dom/imptests/testharness.js => js/src/jit-test/lib/w3c-testharness.js extra : moz-landing-system : lando
1 parent 1cb11c5 commit 31a9f32

File tree

11 files changed

+1114
-0
lines changed

11 files changed

+1114
-0
lines changed

build/gen_test_packages_manifest.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,12 @@ def generate_package_data(args):
7676
# specific zips.
7777
tests_common = args.tests_common
7878
jsshell = args.jsshell
79+
web_platform = getattr(args, 'web-platform')
7980

8081
harness_requirements = dict([(k, [tests_common]) for k in ALL_HARNESSES])
8182
harness_requirements['jittest'].append(jsshell)
83+
harness_requirements['jittest'].append(web_platform)
84+
8285
for harness in PACKAGE_SPECIFIED_HARNESSES + OPTIONAL_PACKAGES:
8386
pkg_name = getattr(args, harness, None)
8487
if pkg_name is None:

0 commit comments

Comments
 (0)