Commit a63b3e51 authored by machenbach's avatar machenbach Committed by Commit bot

[test] Remove deprecated ignition-test-suite alias

This is not referenced anymore by the infrastructure after:
https://codereview.chromium.org/2202113003/

BUG=v8:5238

Review-Url: https://codereview.chromium.org/2203023003
Cr-Commit-Position: refs/heads/master@{#38254}
parent 4289c28f
...@@ -31,7 +31,6 @@ ...@@ -31,7 +31,6 @@
'../test/bot_default.gyp:*', '../test/bot_default.gyp:*',
'../test/benchmarks/benchmarks.gyp:*', '../test/benchmarks/benchmarks.gyp:*',
'../test/default.gyp:*', '../test/default.gyp:*',
'../test/ignition.gyp:*',
'../test/intl/intl.gyp:*', '../test/intl/intl.gyp:*',
'../test/message/message.gyp:*', '../test/message/message.gyp:*',
'../test/mjsunit/mjsunit.gyp:*', '../test/mjsunit/mjsunit.gyp:*',
......
...@@ -71,15 +71,6 @@ v8_isolate_run("default") { ...@@ -71,15 +71,6 @@ v8_isolate_run("default") {
isolate = "default.isolate" isolate = "default.isolate"
} }
v8_isolate_run("ignition") {
deps = [
":cctest_run",
":mjsunit_run",
]
isolate = "ignition.isolate"
}
v8_isolate_run("optimize_for_size") { v8_isolate_run("optimize_for_size") {
deps = [ deps = [
":cctest_run", ":cctest_run",
......
# Copyright 2016 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': 'ignition_run',
'type': 'none',
'dependencies': [
'cctest/cctest.gyp:cctest_run',
'mjsunit/mjsunit.gyp:mjsunit_run',
],
'includes': [
'../gypfiles/features.gypi',
'../gypfiles/isolate.gypi',
],
'sources': [
'ignition.isolate',
],
},
],
}],
],
}
# Copyright 2016 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.
{
'variables': {
'command': [
'../tools/run-tests.py',
],
},
'includes': [
'cctest/cctest.isolate',
'fuzzer/fuzzer.isolate',
'inspector_protocol_parser_test/inspector_protocol_parser_test.isolate',
'intl/intl.isolate',
'message/message.isolate',
'mjsunit/mjsunit.isolate',
'preparser/preparser.isolate',
'unittests/unittests.isolate',
'webkit/webkit.isolate',
],
}
...@@ -84,20 +84,6 @@ TEST_MAP = { ...@@ -84,20 +84,6 @@ TEST_MAP = {
"unittests", "unittests",
"inspector_protocol_parser_test", "inspector_protocol_parser_test",
], ],
# This needs to stay in sync with test/ignition.isolate.
# TODO(machenbach): This will be deprecated. Istead default or bot_default
# will be used together with ignition flags.
"ignition": [
"mjsunit",
"cctest",
"webkit",
"fuzzer",
"message",
"preparser",
"intl",
"unittests",
"inspector_protocol_parser_test",
],
# This needs to stay in sync with test/optimize_for_size.isolate. # This needs to stay in sync with test/optimize_for_size.isolate.
"optimize_for_size": [ "optimize_for_size": [
"mjsunit", "mjsunit",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment