e177068e5c
The spec tests are stored on a mirror and are downloaded with the DEPS file. The test files on the mirror are updated with a script which has to be executed manually. This CL contains the following changes: * A script which updates the spec tests and uploads the generated files to the mirror. * Changes to the DEPS file to download the files from the mirror. * Changes so that tools/run-tests.py can run the spec tests. R=machenbach@chromium.org, rossberg@chromium.org Change-Id: Ia50d09bb1501c0c0f1d1506aa3657a3aa69c2864 Reviewed-on: https://chromium-review.googlesource.com/488083 Commit-Queue: Andreas Haas <ahaas@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#44933}
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
# Copyright 2015 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.
|
|
|
|
{
|
|
'conditions': [
|
|
['test_isolation_mode != "noop"', {
|
|
'targets': [
|
|
{
|
|
'target_name': 'bot_default_run',
|
|
'type': 'none',
|
|
'dependencies': [
|
|
'cctest/cctest.gyp:cctest_run',
|
|
'fuzzer/fuzzer.gyp:fuzzer_run',
|
|
'inspector/inspector.gyp:inspector-test_run',
|
|
'intl/intl.gyp:intl_run',
|
|
'message/message.gyp:message_run',
|
|
'mjsunit/mjsunit.gyp:mjsunit_run',
|
|
'preparser/preparser.gyp:preparser_run',
|
|
'unittests/unittests.gyp:unittests_run',
|
|
'wasm-spec-tests/wasm-spec-tests.gyp:wasm_spec_tests_run',
|
|
'webkit/webkit.gyp:webkit_run',
|
|
],
|
|
'includes': [
|
|
'../gypfiles/features.gypi',
|
|
'../gypfiles/isolate.gypi',
|
|
],
|
|
'sources': [
|
|
'bot_default.isolate',
|
|
],
|
|
},
|
|
],
|
|
}],
|
|
],
|
|
}
|