Commit ca70df51 authored by jameslahm's avatar jameslahm Committed by V8 LUCI CQ

[test] Move cctest/test-types to unittests/compiler/types-unittest

Bug: v8:12781
Change-Id: I01416a638abbb0f2c590f806869c00356b0fcba5
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3675732Reviewed-by: 's avatarLeszek Swirski <leszeks@chromium.org>
Commit-Queue: 王澳 <wangao.james@bytedance.com>
Cr-Commit-Position: refs/heads/main@{#80802}
parent d1fbcecc
...@@ -239,7 +239,6 @@ v8_source_set("cctest_sources") { ...@@ -239,7 +239,6 @@ v8_source_set("cctest_sources") {
"test-transitions.cc", "test-transitions.cc",
"test-transitions.h", "test-transitions.h",
"test-typedarrays.cc", "test-typedarrays.cc",
"test-types.cc",
"test-unscopables-hidden-prototype.cc", "test-unscopables-hidden-prototype.cc",
"test-unwinder-code-pages.cc", "test-unwinder-code-pages.cc",
"test-usecounters.cc", "test-usecounters.cc",
......
...@@ -63,9 +63,6 @@ ...@@ -63,9 +63,6 @@
# are actually 13 * 38 * 5 * 128 = 316160 individual tests hidden here. # are actually 13 * 38 * 5 * 128 = 316160 individual tests hidden here.
'test-parsing/ParserSync': [PASS, NO_VARIANTS], 'test-parsing/ParserSync': [PASS, NO_VARIANTS],
# This tests only the type system, no point in running several variants.
'test-types/*': [PASS, NO_VARIANTS],
# This tests API threading, no point in running several variants. # This tests API threading, no point in running several variants.
'test-api/Threading*': [PASS, SLOW, NO_VARIANTS], 'test-api/Threading*': [PASS, SLOW, NO_VARIANTS],
......
...@@ -321,6 +321,7 @@ v8_source_set("unittests_sources") { ...@@ -321,6 +321,7 @@ v8_source_set("unittests_sources") {
"compiler/state-values-utils-unittest.cc", "compiler/state-values-utils-unittest.cc",
"compiler/typed-optimization-unittest.cc", "compiler/typed-optimization-unittest.cc",
"compiler/typer-unittest.cc", "compiler/typer-unittest.cc",
"compiler/types-unittest.cc",
"compiler/value-numbering-reducer-unittest.cc", "compiler/value-numbering-reducer-unittest.cc",
"compiler/zone-stats-unittest.cc", "compiler/zone-stats-unittest.cc",
"date/date-cache-unittest.cc", "date/date-cache-unittest.cc",
......
...@@ -7,6 +7,9 @@ ...@@ -7,6 +7,9 @@
[ALWAYS, { [ALWAYS, {
# BUG(5193). The cpu profiler tests are notoriously flaky. # BUG(5193). The cpu profiler tests are notoriously flaky.
'SamplerTest.LibSamplerCollectSample': [SKIP], 'SamplerTest.LibSamplerCollectSample': [SKIP],
# This tests only the type system, no point in running several variants.
'TypesTest.*': [PASS, NO_VARIANTS],
}], # ALWAYS }], # ALWAYS
############################################################################## ##############################################################################
......
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