From 8b2db8103603faa7c44657e0cdd5a6db2ff1ba13 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Mon, 19 Apr 2021 15:24:00 -0400 Subject: [PATCH 01/19] Allow filtering of runtime tests based on runtimevariant. --- .../templates/runtimes/run-test-job.yml | 18 ++++++++++--- eng/pipelines/runtime.yml | 27 ++++++++++++++++++- src/tests/issues.targets | 14 ++++++---- 3 files changed, 49 insertions(+), 10 deletions(-) diff --git a/eng/pipelines/common/templates/runtimes/run-test-job.yml b/eng/pipelines/common/templates/runtimes/run-test-job.yml index 1c3554510aed91..3f62487e363bfd 100644 --- a/eng/pipelines/common/templates/runtimes/run-test-job.yml +++ b/eng/pipelines/common/templates/runtimes/run-test-job.yml @@ -63,7 +63,11 @@ jobs: - ${{ if notIn(parameters.testGroup, 'innerloop', 'clrinterpreter') }}: - '${{ parameters.runtimeFlavor }}_common_test_build_p1_AnyOS_AnyCPU_${{parameters.buildConfig }}' - ${{ if ne(parameters.stagedBuild, true) }}: - - ${{ format('{0}_{1}_product_build_{2}{3}_{4}_{5}', parameters.runtimeFlavor, parameters.runtimeVariant, parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig) }} + - ${{ if or( eq(parameters.runtimeVariant, 'minijit'), eq(parameters.runtimeVariant, 'monointerpreter')) }}: + # minijit and mono interpreter runtimevariants do not require any special build of the runtime + - ${{ format('{0}_{1}_product_build_{2}{3}_{4}_{5}', parameters.runtimeFlavor, '', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig) }} + - ${{ if not(or(eq(parameters.runtimeVariant, 'minijit'), eq(parameters.runtimeVariant, 'monointerpreter'))) }}: + - ${{ format('{0}_{1}_product_build_{2}{3}_{4}_{5}', parameters.runtimeFlavor, parameters.runtimeVariant, parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig) }} - ${{ if ne(parameters.liveLibrariesBuildConfig, '') }}: - ${{ format('libraries_build_{0}{1}_{2}_{3}', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.liveLibrariesBuildConfig) }} @@ -84,6 +88,13 @@ jobs: - name: runtimeFlavorArgs value: '-excludemonofailures' + - name: runtimeRuntimeVariantArg + value: '' + + - ${{ if not(eq(parameters.runtimeVariant, '')) }}: + - name: runtimeRuntimeVariantArg + value: '/p:RuntimeVariant=${{ parameters.runtimeVariant }}' + - name: crossgenArg value: '' - name: LogNamePrefix @@ -255,7 +266,7 @@ jobs: # Generate test wrappers. This is the step that examines issues.targets to exclude tests. - - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) buildtestwrappersonly $(runtimeFlavorArgs) $(crossgenArg) $(buildConfig) $(archType) $(crossArg) $(priorityArg) $(librariesOverrideArg) + - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) buildtestwrappersonly $(runtimeFlavorArgs) $(runtimeVariantArg) $(crossgenArg) $(buildConfig) $(archType) $(crossArg) $(priorityArg) $(librariesOverrideArg) displayName: Generate test wrappers @@ -354,8 +365,7 @@ jobs: - normal - ${{ if eq(parameters.runtimeFlavor, 'coreclr') }}: - no_tiered_compilation - - ${{ if eq(parameters.runtimeFlavor, 'mono') }}: - - interpreter + ${{ if in(parameters.testGroup, 'jitstress') }}: scenarios: - jitminopts diff --git a/eng/pipelines/runtime.yml b/eng/pipelines/runtime.yml index 94d0b555a207ea..91ca17aaf57365 100644 --- a/eng/pipelines/runtime.yml +++ b/eng/pipelines/runtime.yml @@ -853,7 +853,7 @@ jobs: eq(variables['isFullMatrix'], true)) # -# Mono CoreCLR runtime Test executions using live libraries +# Mono CoreCLR runtime Test executions using live libraries in jit mode # Only when Mono is changed - template: /eng/pipelines/common/platform-matrix.yml parameters: @@ -869,6 +869,31 @@ jobs: testGroup: innerloop liveLibrariesBuildConfig: ${{ variables.debugOnPrReleaseOnRolling }} liveRuntimeBuildConfig: release + runtimeVariant: minijit + condition: >- + or( + eq(dependencies.evaluate_paths.outputs['SetPathVars_mono.containsChange'], true), + eq(dependencies.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true), + eq(variables['isFullMatrix'], true)) + +# +# Mono CoreCLR runtime Test executions using live libraries in interpreter mode +# Only when Mono is changed +- template: /eng/pipelines/common/platform-matrix.yml + parameters: + jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml + buildConfig: release + runtimeFlavor: mono + platforms: + - OSX_x64 + - Linux_arm64 + helixQueueGroup: pr + helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml + jobParameters: + testGroup: innerloop + liveLibrariesBuildConfig: ${{ variables.debugOnPrReleaseOnRolling }} + liveRuntimeBuildConfig: release + runtimeVariant: monointerpreter condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_mono.containsChange'], true), diff --git a/src/tests/issues.targets b/src/tests/issues.targets index b575a39cc9caea..f20fdac8955a42 100644 --- a/src/tests/issues.targets +++ b/src/tests/issues.targets @@ -1039,7 +1039,7 @@ - + Mono does not define out of range fp to int conversions @@ -1937,10 +1937,11 @@ needs triage + - - - + + + https://github.com/dotnet/runtime/issues/46622 @@ -2514,6 +2515,7 @@ needs triage + @@ -2668,12 +2670,14 @@ needs triage + + + needs triage - From 5923757373a4e2bd949e0d8d7785c76a3fb4d4d3 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Mon, 26 Apr 2021 15:49:01 -0400 Subject: [PATCH 02/19] Changed artifact path. --- eng/pipelines/mono/templates/xplat-pipeline-job.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/eng/pipelines/mono/templates/xplat-pipeline-job.yml b/eng/pipelines/mono/templates/xplat-pipeline-job.yml index d3e58bcfe41e72..172cd2e8830ce3 100644 --- a/eng/pipelines/mono/templates/xplat-pipeline-job.yml +++ b/eng/pipelines/mono/templates/xplat-pipeline-job.yml @@ -58,6 +58,11 @@ jobs: - name: buildProductArtifactName value: 'MonoProduct__${{ parameters.runtimeVariant }}_$(osGroup)$(osSubgroup)_$(archType)_$(buildConfig)' + # minijit and monointerpreter do not use seperate product builds. + - ${{ if or(eq(parameters.runtimeVariant, "minijit"), eq(parameters.runtimeVariant, "monointerpreter")) }}: + - name : buildProductArtifactName + value : 'MonoProduct___$(osGroup)$(osSubgroup)_$(archType)_$(buildConfig)' + - name: binTestsPath value: '$(Build.SourcesDirectory)/artifacts/tests/coreclr' From a1fe67ee00ef978296e9b37689faba6cad9b0939 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Mon, 26 Apr 2021 21:31:23 -0400 Subject: [PATCH 03/19] Fixed quotes. --- eng/pipelines/mono/templates/xplat-pipeline-job.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/pipelines/mono/templates/xplat-pipeline-job.yml b/eng/pipelines/mono/templates/xplat-pipeline-job.yml index 172cd2e8830ce3..e79c08a25077f2 100644 --- a/eng/pipelines/mono/templates/xplat-pipeline-job.yml +++ b/eng/pipelines/mono/templates/xplat-pipeline-job.yml @@ -59,7 +59,7 @@ jobs: value: 'MonoProduct__${{ parameters.runtimeVariant }}_$(osGroup)$(osSubgroup)_$(archType)_$(buildConfig)' # minijit and monointerpreter do not use seperate product builds. - - ${{ if or(eq(parameters.runtimeVariant, "minijit"), eq(parameters.runtimeVariant, "monointerpreter")) }}: + - ${{ if or(eq(parameters.runtimeVariant, 'minijit'), eq(parameters.runtimeVariant, 'monointerpreter')) }}: - name : buildProductArtifactName value : 'MonoProduct___$(osGroup)$(osSubgroup)_$(archType)_$(buildConfig)' From 970623561d3203dacbce7bd7bc5fd5dd5e0224c7 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Mon, 26 Apr 2021 21:51:50 -0400 Subject: [PATCH 04/19] Removed extra spaces. --- eng/pipelines/common/templates/runtimes/run-test-job.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/pipelines/common/templates/runtimes/run-test-job.yml b/eng/pipelines/common/templates/runtimes/run-test-job.yml index 3f62487e363bfd..6576424ee1a478 100644 --- a/eng/pipelines/common/templates/runtimes/run-test-job.yml +++ b/eng/pipelines/common/templates/runtimes/run-test-job.yml @@ -63,10 +63,10 @@ jobs: - ${{ if notIn(parameters.testGroup, 'innerloop', 'clrinterpreter') }}: - '${{ parameters.runtimeFlavor }}_common_test_build_p1_AnyOS_AnyCPU_${{parameters.buildConfig }}' - ${{ if ne(parameters.stagedBuild, true) }}: - - ${{ if or( eq(parameters.runtimeVariant, 'minijit'), eq(parameters.runtimeVariant, 'monointerpreter')) }}: + - ${{ if or( eq(parameters.runtimeVariant, 'minijit'), eq(parameters.runtimeVariant, 'monointerpreter')) }}: # minijit and mono interpreter runtimevariants do not require any special build of the runtime - ${{ format('{0}_{1}_product_build_{2}{3}_{4}_{5}', parameters.runtimeFlavor, '', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig) }} - - ${{ if not(or(eq(parameters.runtimeVariant, 'minijit'), eq(parameters.runtimeVariant, 'monointerpreter'))) }}: + - ${{ if not(or(eq(parameters.runtimeVariant, 'minijit'), eq(parameters.runtimeVariant, 'monointerpreter'))) }}: - ${{ format('{0}_{1}_product_build_{2}{3}_{4}_{5}', parameters.runtimeFlavor, parameters.runtimeVariant, parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig) }} - ${{ if ne(parameters.liveLibrariesBuildConfig, '') }}: - ${{ format('libraries_build_{0}{1}_{2}_{3}', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.liveLibrariesBuildConfig) }} From 5915dfb0b1bf473a9fe1381ba8f48d7ade242b44 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Mon, 26 Apr 2021 21:54:16 -0400 Subject: [PATCH 05/19] Fixed spacing in issues.targets, and removed AltJit. --- src/tests/issues.targets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/issues.targets b/src/tests/issues.targets index f20fdac8955a42..28a684c6fd7776 100644 --- a/src/tests/issues.targets +++ b/src/tests/issues.targets @@ -1941,7 +1941,7 @@ - + https://github.com/dotnet/runtime/issues/46622 @@ -2673,7 +2673,7 @@ - + needs triage From bdd4232f8d2eb0f36aa13d1eb6c040a471711d47 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Tue, 27 Apr 2021 10:28:11 -0400 Subject: [PATCH 06/19] Made wasm use interpreter --- .../templates/runtimes/wasm-runtime-and-send-to-helix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/pipelines/common/templates/runtimes/wasm-runtime-and-send-to-helix.yml b/eng/pipelines/common/templates/runtimes/wasm-runtime-and-send-to-helix.yml index ed6022360c55aa..0745a61f507d18 100644 --- a/eng/pipelines/common/templates/runtimes/wasm-runtime-and-send-to-helix.yml +++ b/eng/pipelines/common/templates/runtimes/wasm-runtime-and-send-to-helix.yml @@ -32,7 +32,7 @@ parameters: steps: - - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) /p:LibrariesConfiguration=${{ parameters.buildConfig }} -ci -excludemonofailures os Browser wasm $(buildConfigUpper) + - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) /p:RuntimeVariant=monointerpreter /p:LibrariesConfiguration=${{ parameters.buildConfig }} -ci -excludemonofailures os Browser wasm $(buildConfigUpper) displayName: Build Tests # Send tests to Helix From e483d70ff48710975abaafd3091fb91efceeafb0 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Tue, 27 Apr 2021 12:32:30 -0400 Subject: [PATCH 07/19] Fixed runtime variant arg spelling. --- eng/pipelines/common/templates/runtimes/run-test-job.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/pipelines/common/templates/runtimes/run-test-job.yml b/eng/pipelines/common/templates/runtimes/run-test-job.yml index 6576424ee1a478..5a444ec120c143 100644 --- a/eng/pipelines/common/templates/runtimes/run-test-job.yml +++ b/eng/pipelines/common/templates/runtimes/run-test-job.yml @@ -88,11 +88,11 @@ jobs: - name: runtimeFlavorArgs value: '-excludemonofailures' - - name: runtimeRuntimeVariantArg + - name: runtimeVariantArg value: '' - ${{ if not(eq(parameters.runtimeVariant, '')) }}: - - name: runtimeRuntimeVariantArg + - name: runtimeVariantArg value: '/p:RuntimeVariant=${{ parameters.runtimeVariant }}' - name: crossgenArg From 0649e99e53745f8548cc36d75426d4b3ccddc1d4 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Wed, 28 Apr 2021 12:00:54 -0400 Subject: [PATCH 08/19] Seperate exclusions for llvmaout. --- src/tests/issues.targets | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/tests/issues.targets b/src/tests/issues.targets index 28a684c6fd7776..9344883bb7f17b 100644 --- a/src/tests/issues.targets +++ b/src/tests/issues.targets @@ -2515,7 +2515,18 @@ needs triage + + + + needs triage + + + needs triage + + + needs triage + From ea6452bb8209b77e494a8b169039fca30caa6bbb Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Wed, 28 Apr 2021 17:15:18 -0400 Subject: [PATCH 09/19] Added more failing tests. --- src/tests/issues.targets | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/tests/issues.targets b/src/tests/issues.targets index 9344883bb7f17b..5bf46f70c9d3ea 100644 --- a/src/tests/issues.targets +++ b/src/tests/issues.targets @@ -2527,6 +2527,12 @@ needs triage + + needs triage + + + needs triage + From 3fdb7d49a16afdda4285897db9d6996e29855771 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Wed, 28 Apr 2021 17:16:32 -0400 Subject: [PATCH 10/19] Fixed spacing. --- src/tests/issues.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/issues.targets b/src/tests/issues.targets index 5bf46f70c9d3ea..b7e6f248f34588 100644 --- a/src/tests/issues.targets +++ b/src/tests/issues.targets @@ -2521,7 +2521,7 @@ needs triage - + needs triage From b70f193c61efd5eb9500177e903a00ec868f19af Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Wed, 28 Apr 2021 19:42:24 -0400 Subject: [PATCH 11/19] Added another test to issues.targets. --- src/tests/issues.targets | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/tests/issues.targets b/src/tests/issues.targets index b7e6f248f34588..7f4f6e302d4205 100644 --- a/src/tests/issues.targets +++ b/src/tests/issues.targets @@ -2527,6 +2527,9 @@ needs triage + + needs triage + needs triage From e673a481d5a875f8e18786ac370cecd8f60af30e Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Wed, 28 Apr 2021 22:51:55 -0400 Subject: [PATCH 12/19] Added runtimeVariant parameter in aot compile step. --- eng/pipelines/common/templates/runtimes/run-test-job.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/pipelines/common/templates/runtimes/run-test-job.yml b/eng/pipelines/common/templates/runtimes/run-test-job.yml index 5a444ec120c143..53dba08d4293fc 100644 --- a/eng/pipelines/common/templates/runtimes/run-test-job.yml +++ b/eng/pipelines/common/templates/runtimes/run-test-job.yml @@ -302,10 +302,10 @@ jobs: - ${{ if and(eq(parameters.runtimeFlavor, 'mono'), eq(parameters.runtimeVariant, 'llvmaot')) }}: - ${{ if eq(parameters.archType, 'x64') }}: - - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) mono_aot $(buildConfig) $(archType) + - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) mono_aot $(buildConfig) $(archType) $(runtimeVariantArg) displayName: "LLVM AOT compile CoreCLR tests" - ${{ if eq(parameters.archType, 'arm64') }}: - - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) mono_aot $(buildConfig) $(archType) cross + - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) mono_aot $(buildConfig) $(archType) cross $(runtimeVariantArg) displayName: "LLVM AOT cross-compile CoreCLR tests" env: __MonoToolPrefix: aarch64-linux-gnu- From df6023022d3ff25928c8e9e12a8ff780de2795e4 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Wed, 28 Apr 2021 22:52:17 -0400 Subject: [PATCH 13/19] Added more failures to issues.targets. --- src/tests/issues.targets | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/tests/issues.targets b/src/tests/issues.targets index 7f4f6e302d4205..bea7f3d9ead2cc 100644 --- a/src/tests/issues.targets +++ b/src/tests/issues.targets @@ -2536,6 +2536,9 @@ needs triage + + needs triage + From 5d49775cac7f8f5c10e00dadf3bf1f3d02707841 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Wed, 28 Apr 2021 23:58:02 -0400 Subject: [PATCH 14/19] Fixed issues.targets. --- src/tests/issues.targets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/issues.targets b/src/tests/issues.targets index bea7f3d9ead2cc..96d8912de134c1 100644 --- a/src/tests/issues.targets +++ b/src/tests/issues.targets @@ -2536,12 +2536,12 @@ needs triage - + needs triage - + Doesn't compile with LLVM AOT. From 291ff575997d9b8ee4306889b33646f2e6f6b43a Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Wed, 28 Apr 2021 23:58:20 -0400 Subject: [PATCH 15/19] Fixed issues.targets. --- src/tests/issues.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/issues.targets b/src/tests/issues.targets index 96d8912de134c1..169ac1124faa50 100644 --- a/src/tests/issues.targets +++ b/src/tests/issues.targets @@ -2536,7 +2536,7 @@ needs triage - + needs triage From 03ac47a13e9161c6ce76ca090e65f16657ad5b54 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Thu, 29 Apr 2021 11:21:58 -0400 Subject: [PATCH 16/19] Removed extra space. --- .../templates/runtimes/wasm-runtime-and-send-to-helix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/pipelines/common/templates/runtimes/wasm-runtime-and-send-to-helix.yml b/eng/pipelines/common/templates/runtimes/wasm-runtime-and-send-to-helix.yml index 0745a61f507d18..2e9fa6d8525d6d 100644 --- a/eng/pipelines/common/templates/runtimes/wasm-runtime-and-send-to-helix.yml +++ b/eng/pipelines/common/templates/runtimes/wasm-runtime-and-send-to-helix.yml @@ -32,7 +32,7 @@ parameters: steps: - - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) /p:RuntimeVariant=monointerpreter /p:LibrariesConfiguration=${{ parameters.buildConfig }} -ci -excludemonofailures os Browser wasm $(buildConfigUpper) + - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) /p:RuntimeVariant=monointerpreter /p:LibrariesConfiguration=${{ parameters.buildConfig }} -ci -excludemonofailures os Browser wasm $(buildConfigUpper) displayName: Build Tests # Send tests to Helix From 3a67811c1193bf35f1922eac76c20b57b15529f2 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Thu, 29 Apr 2021 11:27:29 -0400 Subject: [PATCH 17/19] Added priority arg. --- eng/pipelines/mono/templates/xplat-pipeline-job.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eng/pipelines/mono/templates/xplat-pipeline-job.yml b/eng/pipelines/mono/templates/xplat-pipeline-job.yml index e79c08a25077f2..8327e5564a1e10 100644 --- a/eng/pipelines/mono/templates/xplat-pipeline-job.yml +++ b/eng/pipelines/mono/templates/xplat-pipeline-job.yml @@ -97,6 +97,9 @@ jobs: value: 'Checked' ${{ if eq(parameters.liveRuntimeBuildConfig, 'debug') }}: value: 'Debug' + + - name: priorityArg + value: '' - librariesBuildArtifactName: '' - librariesOverrideArg: '' From 31bd37968469f8b7844fe356f18a748a7a817d43 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Thu, 29 Apr 2021 13:00:43 -0400 Subject: [PATCH 18/19] Added missing quote. --- src/tests/issues.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/issues.targets b/src/tests/issues.targets index 169ac1124faa50..8637ea25779380 100644 --- a/src/tests/issues.targets +++ b/src/tests/issues.targets @@ -2541,7 +2541,7 @@ - + Doesn't compile with LLVM AOT. From 08e89d1578e573e02de73a091d01c989348cec43 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Fri, 30 Apr 2021 22:59:33 -0400 Subject: [PATCH 19/19] Added another exclusion. --- src/tests/issues.targets | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/tests/issues.targets b/src/tests/issues.targets index 8637ea25779380..6df3036b3d2bc7 100644 --- a/src/tests/issues.targets +++ b/src/tests/issues.targets @@ -2536,7 +2536,10 @@ needs triage - + + needs triage + + needs triage