From ffe689ec41e694440557e331afd5d5a4e358825c Mon Sep 17 00:00:00 2001 From: Shay Rojansky Date: Sat, 23 Aug 2025 09:23:58 +0200 Subject: [PATCH] Disable test parallelization in OleDB tests Attempts to fix #87783 --- src/libraries/System.Data.OleDb/tests/AssemblyInfo.cs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/libraries/System.Data.OleDb/tests/AssemblyInfo.cs diff --git a/src/libraries/System.Data.OleDb/tests/AssemblyInfo.cs b/src/libraries/System.Data.OleDb/tests/AssemblyInfo.cs new file mode 100644 index 00000000000000..6349558b2d1c35 --- /dev/null +++ b/src/libraries/System.Data.OleDb/tests/AssemblyInfo.cs @@ -0,0 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using Xunit; + +// The OleDB tests use the ACE driver, which has issues with concurrency. +[assembly: CollectionBehavior(DisableTestParallelization = true)]