Skip to content

Commit

Permalink
ci: exclude cpu-arch support providers from coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverbooth committed Apr 2, 2023
1 parent daff6ee commit 918b0b7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion X10D/src/SystemAvx2SupportProvider.cs
@@ -1,9 +1,11 @@
#if NETCOREAPP3_0_OR_GREATER
using System.Diagnostics.CodeAnalysis;
#if NETCOREAPP3_0_OR_GREATER
using System.Runtime.Intrinsics.X86;
#endif

namespace X10D;

[ExcludeFromCodeCoverage]
internal struct SystemAvx2SupportProvider : IAvx2SupportProvider
{
/// <inheritdoc />
Expand Down
4 changes: 3 additions & 1 deletion X10D/src/SystemSse2SupportProvider.cs
@@ -1,9 +1,11 @@
#if NETCOREAPP3_0_OR_GREATER
using System.Diagnostics.CodeAnalysis;
#if NETCOREAPP3_0_OR_GREATER
using System.Runtime.Intrinsics.X86;
#endif

namespace X10D;

[ExcludeFromCodeCoverage]
internal struct SystemSse2SupportProvider : ISse2SupportProvider
{
/// <inheritdoc />
Expand Down
4 changes: 3 additions & 1 deletion X10D/src/SystemSsse3SupportProvider.cs
@@ -1,9 +1,11 @@
#if NETCOREAPP3_0_OR_GREATER
using System.Diagnostics.CodeAnalysis;
#if NETCOREAPP3_0_OR_GREATER
using System.Runtime.Intrinsics.X86;
#endif

namespace X10D;

[ExcludeFromCodeCoverage]
internal struct SystemSsse3SupportProvider : ISsse3SupportProvider
{
/// <inheritdoc />
Expand Down

0 comments on commit 918b0b7

Please sign in to comment.