test: move chromium spec config to its own folder (#35063)
This commit is contained in:
parent
0be73d18ef
commit
77e1a046ec
3 changed files with 0 additions and 0 deletions
70
spec-chromium/BUILD.gn
Normal file
70
spec-chromium/BUILD.gn
Normal file
|
@ -0,0 +1,70 @@
|
|||
import("//build/config/features.gni")
|
||||
import("//printing/buildflags/buildflags.gni")
|
||||
|
||||
group("spec") {
|
||||
testonly = true
|
||||
|
||||
deps = [
|
||||
":chromium_browsertests",
|
||||
":chromium_unittests",
|
||||
]
|
||||
}
|
||||
|
||||
group("chromium_unittests") {
|
||||
testonly = true
|
||||
|
||||
deps = [
|
||||
"//base:base_unittests",
|
||||
"//cc:cc_unittests",
|
||||
"//content/test:content_unittests",
|
||||
"//crypto:crypto_unittests",
|
||||
"//device:device_unittests",
|
||||
"//gin:gin_unittests",
|
||||
"//gpu:gpu_unittests",
|
||||
"//ipc:ipc_tests",
|
||||
"//media:media_unittests",
|
||||
"//media/capture:capture_unittests",
|
||||
"//media/midi:midi_unittests",
|
||||
"//media/mojo:media_mojo_unittests",
|
||||
"//mojo:mojo_unittests",
|
||||
"//net:net_unittests",
|
||||
"//ppapi:ppapi_unittests",
|
||||
"//printing:printing_unittests",
|
||||
"//skia:skia_unittests",
|
||||
"//sql:sql_unittests",
|
||||
"//storage:storage_unittests",
|
||||
"//third_party/angle/src/tests:angle_unittests",
|
||||
"//third_party/blink/public:all_blink",
|
||||
"//third_party/blink/public:test_support",
|
||||
"//third_party/leveldatabase:env_chromium_unittests",
|
||||
"//ui/base:ui_base_unittests",
|
||||
"//ui/compositor:compositor_unittests",
|
||||
"//ui/display:display_unittests",
|
||||
"//ui/events:events_unittests",
|
||||
"//ui/gl:gl_unittests",
|
||||
"//url:url_unittests",
|
||||
"//url/ipc:url_ipc_unittests",
|
||||
"//v8/test/unittests:unittests",
|
||||
]
|
||||
|
||||
if (enable_basic_printing) {
|
||||
deps += [ "//printing:printing_unittests" ]
|
||||
}
|
||||
|
||||
if (is_linux) {
|
||||
deps += [
|
||||
"//net:disk_cache_memory_test",
|
||||
"//sandbox/linux:sandbox_linux_unittests",
|
||||
]
|
||||
|
||||
if (use_dbus) {
|
||||
deps += [ "//dbus:dbus_unittests" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
group("chromium_browsertests") {
|
||||
testonly = true
|
||||
|
||||
deps = [ "//content/test:content_browsertests" ]
|
||||
}
|
2
spec-chromium/configs/browsertests.yml
Normal file
2
spec-chromium/configs/browsertests.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
tests:
|
||||
- content_browsertests
|
126
spec-chromium/configs/unittests.yml
Normal file
126
spec-chromium/configs/unittests.yml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# Note: a "disabled" dict can have arbitrary named properties
|
||||
# with lists of disabled tests as a value. Those properties' names
|
||||
# are for humans only and are there only to explain
|
||||
# why a group of tests is disabled.
|
||||
|
||||
tests:
|
||||
- base_unittests:
|
||||
disabled:
|
||||
upstream_failures:
|
||||
- FilePathTest.FromUTF8Unsafe_And_AsUTF8Unsafe
|
||||
- RTLTest.WrapPathWithLTRFormatting
|
||||
- SysStrings.SysNativeMBAndWide
|
||||
- SysStrings.SysNativeMBToWide
|
||||
- SysStrings.SysWideToNativeMB
|
||||
to_fix:
|
||||
- PartitionReallocReturnNullTest.RepeatedReturnNullDirect
|
||||
- WeakPtrDeathTest*
|
||||
- cc_unittests
|
||||
- cc_blink_unittests
|
||||
- content_unittests:
|
||||
disabled:
|
||||
upstream_failures:
|
||||
- BackgroundSyncManagerTest.*
|
||||
- FrameServiceBaseTest.ConnectionError
|
||||
- MediaSessionControllerTest.*
|
||||
- MediaStreamUIProxyFeaturePolicyTest.FeaturePolicy
|
||||
- PresentationServiceImplTest.*
|
||||
to_fix:
|
||||
- _/DOMStorageMapParamTest.EnforcesQuota/0
|
||||
- _/DOMStorageMapParamTest.EnforcesQuota/1
|
||||
- RenderFrameAudioInputStreamFactoryTest.ConstructDestruct
|
||||
- crypto_unittests
|
||||
- device_unittests
|
||||
- gin_unittests
|
||||
- gpu_unittests
|
||||
- ipc_tests
|
||||
- media_unittests
|
||||
- capture_unittests
|
||||
- midi_unittests
|
||||
- media_mojo_unittests
|
||||
- mojo_unittests
|
||||
- mojo_common_unittests
|
||||
- net_unittests:
|
||||
disabled:
|
||||
upstream_failures:
|
||||
- EndToEndTestsWithTls/EndToEndTestWithTls.SimpleRequestResponsev6/*
|
||||
- FilenameUtilTest.GenerateFileName
|
||||
- SSLClientSocketTest.*
|
||||
- UDPSocketTest.ClientGetLocalPeerAddresses
|
||||
- UDPSocketTest.ClientSetDoNotFragment
|
||||
- ppapi_unittests
|
||||
- printing_unittests
|
||||
- skia_unittests
|
||||
- sql_unittests
|
||||
- storage_unittests
|
||||
- gn_unittests
|
||||
- ui_base_unittests
|
||||
- compositor_unittests
|
||||
- display_unittests
|
||||
- events_unittests
|
||||
- gl_unittests
|
||||
- url_unittests
|
||||
- url_ipc_unittests
|
||||
# V8
|
||||
- unittests:
|
||||
disabled:
|
||||
upstream_failures:
|
||||
- LiveRangeUnitTest.InvalidConstruction
|
||||
- LiveRangeUnitTest.SplinterMultipleIntervalsInside
|
||||
- LiveRangeUnitTest.SplitInvalidStart
|
||||
# Blink
|
||||
- blink_common_unittests
|
||||
- blink_heap_unittests
|
||||
- blink_platform_unittests:
|
||||
disabled:
|
||||
# TODO(alexeykuzmin): Should those be fixed?
|
||||
- AnimatedPNGTests.*
|
||||
- AnimatedWebPTests.*
|
||||
- AnimatedWEBPTests.clearCacheExceptFrameWithAncestors
|
||||
- BitmapImageTest.*
|
||||
- BMPImageDecoderTest*
|
||||
- DecodedImageOrientationHistogramTest*
|
||||
- DecodedImageTypeHistogramTest*
|
||||
- DeferredImageDecoderTest.decodeOnOtherThread
|
||||
- DeferredImageDecoderTestWoPlatform*
|
||||
- GIFImageDecoderTest*
|
||||
- HighContrastImageClassifierTest*
|
||||
- ICOImageDecoderTests*
|
||||
- JPEGImageDecoderTest*
|
||||
- FilePathConversionTest*
|
||||
- PaintPropertyNodeTest.InitialStateAndReset
|
||||
- PNGTests*
|
||||
- StaticPNGTests*
|
||||
- StaticWebPTests*
|
||||
- webkit_unit_tests:
|
||||
disabled:
|
||||
upstream_failures:
|
||||
- Document/ThreadableLoaderTest.CancelAfterStart/0
|
||||
- ModernMediaControlsImplTest.ControlsShouldUseSafeAreaInsets
|
||||
- ScriptRunnerTest.QueueReentrantScript_InOrder
|
||||
- ScrollbarsTestWithVirtualTimer.PressScrollbarButtonOnInfiniteScrolling
|
||||
- VirtualTimeTest.AllowVirtualTimeToAdvance
|
||||
- VirtualTimeTest.VirtualTimeNotAllowedToAdvanceWhileResourcesLoading
|
||||
- wtf_unittests
|
||||
# Third party
|
||||
- angle_unittests
|
||||
- env_chromium_unittests
|
||||
# TODO(alexeykuzmin): Should be run somehow differently.
|
||||
# - disk_cache_memory_test:
|
||||
# platform: linux
|
||||
- sandbox_linux_unittests:
|
||||
platform: linux
|
||||
disabled:
|
||||
upstream_failures:
|
||||
- BrokerProcess.OpenFilePermsWithClientCheck
|
||||
- BrokerProcess.OpenFilePermsWithClientCheckNoEnt
|
||||
- BrokerProcess.OpenOpenFilePermsNoClientCheck
|
||||
- BrokerProcess.OpenOpenFilePermsNoClientCheckNoEnt
|
||||
- SandboxBPF.SigBus
|
||||
- dbus_unittests:
|
||||
platform: linux
|
||||
disabled:
|
||||
upstream_failures:
|
||||
- EndToEndAsyncTest.InvalidServiceName
|
||||
- EndToEndSyncTest.InvalidServiceName
|
||||
- MessageTest.SetInvalidHeaders
|
Loading…
Add table
Add a link
Reference in a new issue