fdb0b7abb3
This CL updates the hook for the WebAssembly spec repository, and it updates the WebAssembly spec tests. The WebAssembly spec tests have to be updated manually with the tools/wasm/update-wasm-spec-tests.sh script. Mircea, I saw that you updated the WebAssembly spec repository last time. Can you please take a look? UPDATE: I improved the update script slightly, and there is one additional JS API test we fail now and have to fix eventually. R=mtrofin@chromium.org Change-Id: I3c0df9cee64d444147db47daa0c1936edf116173 Reviewed-on: https://chromium-review.googlesource.com/509257 Reviewed-by: Mircea Trofin <mtrofin@chromium.org> Commit-Queue: Andreas Haas <ahaas@chromium.org> Cr-Commit-Position: refs/heads/master@{#45692}
31 lines
765 B
Bash
Executable File
31 lines
765 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2017 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
set -e
|
|
|
|
TOOLS_WASM_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
V8_DIR="${TOOLS_WASM_DIR}/../.."
|
|
|
|
cd ${V8_DIR}
|
|
|
|
mkdir -p ./test/wasm-spec-tests/tests/
|
|
rm -rf ./test/wasm-spec-tests/tests/*
|
|
|
|
./tools/dev/gm.py x64.release d8
|
|
|
|
cd ${V8_DIR}/test/wasm-js/interpreter
|
|
make
|
|
|
|
cd ${V8_DIR}/test/wasm-js/test/core
|
|
|
|
./run.py --wasm ${V8_DIR}/test/wasm-js/interpreter/wasm --js ${V8_DIR}/out/x64.release/d8
|
|
|
|
cp ${V8_DIR}/test/wasm-js/test/core/output/*.js ${V8_DIR}/test/wasm-spec-tests/tests
|
|
|
|
cd ${V8_DIR}/test/wasm-spec-tests
|
|
upload_to_google_storage.py -a -b v8-wasm-spec-tests tests
|
|
|
|
|