summaryrefslogtreecommitdiff
path: root/deps/v8/tools/wasm/update-wasm-spec-tests.sh
blob: ffdef0d820bdaf747982159afa014de67738953b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/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 clean all

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