Enable duplicate linux_host_engine_test. (#161613)

Towards https://github.com/flutter/flutter/issues/161406.

* Enables (on presubmit), and adds a missing GN target.
* Removes tests from the `linux_host_engine` build.
This commit is contained in:
Matan Lurey 2025-01-16 13:52:18 -08:00 committed by GitHub
parent 3f2b7d900e
commit cbe269808b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 26 additions and 6 deletions

View File

@ -321,8 +321,6 @@ targets:
- name: Linux linux_host_engine_test
recipe: engine_v2/engine_v2
# TODO(matanlurey): https://github.com/flutter/flutter/issues/161406.
bringup: true
timeout: 120
properties:
config_name: linux_host_engine_test

View File

@ -29,7 +29,10 @@
"ninja": {
"config": "ci/host_debug_test",
"targets": [
"flutter:unittests"
"flutter:unittests",
"flutter/build/dart:copy_dart_sdk",
"flutter/shell/testing",
"flutter/tools/path_ops"
]
},
"tests": [
@ -73,9 +76,26 @@
"ninja": {
"config": "ci/host_profile_test",
"targets": [
"flutter:unittests"
"flutter:unittests",
"flutter/build/dart:copy_dart_sdk",
"flutter/shell/testing",
"flutter/tools/path_ops"
]
}
},
"tests": [
{
"language": "python3",
"name": "Host Tests for host_profile",
"script": "flutter/testing/run_tests.py",
"parameters": [
"--variant",
"ci/host_profile_test",
"--type",
"dart,dart-host,engine",
"--engine-capture-core-dump"
]
}
]
},
{
"drone_dimensions": [
@ -109,7 +129,7 @@
"config": "ci/host_release_test",
"targets": [
"flutter:unittests",
"flutter/build/archives:flutter_patched_sdk",
"flutter/build/dart:copy_dart_sdk",
"flutter/display_list:display_list_benchmarks",
"flutter/display_list:display_list_builder_benchmarks",
"flutter/display_list:display_list_region_benchmarks",
@ -118,6 +138,8 @@
"flutter/impeller/geometry:geometry_benchmarks",
"flutter/lib/ui:ui_benchmarks",
"flutter/shell/common:shell_benchmarks",
"flutter/shell/testing",
"flutter/tools/path_ops",
"flutter/third_party/txt:txt_benchmarks"
]
},