Commit 9ab15bed authored by Ryan Hunt's avatar Ryan Hunt
Browse files

Bug 1703105 - wasm: Stop vendoring duplicate WPT version of spec tests. r=lth

We have a duplicate copy of the *.wast tests in mozilla's private WPT
folder. I don't think we get anything out of this and it's more work to
get the wast2js converter working with it, so I think we should drop
this for now.

Differential Revision: https://phabricator.services.mozilla.com/D111226
parent c468d12e
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -12,9 +12,6 @@ update:
	cp -R wasm-generate-testsuite/tests/js ../../tests/wasm/spec
	echo $(warning) > ../../tests/wasm/spec/README.md
	[ ! -d ./spec-tests.patch ] || (cd ../../tests/wasm/spec && patch -u -p7 < ../../../etc/wasm/spec-tests.patch)
	rm -r ../../../../../testing/web-platform/mozilla/tests/wasm
	cp -R wasm-generate-testsuite/tests/wpt ../../../../../testing/web-platform/mozilla/tests/wasm
	echo $(warning) > ../../../../../testing/web-platform/mozilla/tests/wasm/README.md

run:
	@[ -z $(MOZCONFIG) ] && echo "You need to define the MOZCONFIG env variable first."
+0 −5
Original line number Diff line number Diff line
# Wasm Spec Tests

These tests are autogenerated using a tool, do not edit.

See `jit-test/etc/wasm/` for more information.
+0 −16
Original line number Diff line number Diff line
<!doctype html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>WebAssembly Web Platform Test</title>
    </head>
    <body>

        <script src=./js/harness/testharness.js></script>
        <script src=./js/harness/testharnessreport.js></script>
        <script src=./js/harness/sync_index.js></script>

        <div id=log></div>
        <script src=./js/address.wast.js></script>
    </body>
</html>
+0 −16
Original line number Diff line number Diff line
<!doctype html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>WebAssembly Web Platform Test</title>
    </head>
    <body>

        <script src=./js/harness/testharness.js></script>
        <script src=./js/harness/testharnessreport.js></script>
        <script src=./js/harness/sync_index.js></script>

        <div id=log></div>
        <script src=./js/binary-leb128.wast.js></script>
    </body>
</html>
+0 −16
Original line number Diff line number Diff line
<!doctype html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>WebAssembly Web Platform Test</title>
    </head>
    <body>

        <script src=./js/harness/testharness.js></script>
        <script src=./js/harness/testharnessreport.js></script>
        <script src=./js/harness/sync_index.js></script>

        <div id=log></div>
        <script src=./js/binary.wast.js></script>
    </body>
</html>
Loading