Skip to content

[Android] Skip VectorSingle and VectorDoubleEqualsNonCanonicalNaNTest on x64 - #74782

Closed
steveisok wants to merge 1 commit into
dotnet:mainfrom
steveisok:skip-vector-noncanonical-droid
Closed

[Android] Skip VectorSingle and VectorDoubleEqualsNonCanonicalNaNTest on x64#74782
steveisok wants to merge 1 commit into
dotnet:mainfrom
steveisok:skip-vector-noncanonical-droid

Conversation

@steveisok

@steveisoksteveisok commented Aug 29, 2022

Copy link
Copy Markdown
Member

These tests are failing on Android x64 and need to be skipped to avoid blocking clean ci.

#74781

… on x64
These tests are failing on Android x64 and need to be skipped for now.
@ghost

Copy link
Copy Markdown

Tagging subscribers to this area: @dotnet/area-system-numerics
See info in area-owners.md if you want to be subscribed.

Issue Details

These tests are failing on Android x64 and need to be skipped for now.

Author:steveisok
Assignees:-
Labels:

area-System.Numerics

Milestone:-

@steveisok
steveisok requested review from a team, akoeplinger and mdh1418August 29, 2022 20:38

@trylektrylek left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thank you!

public static bool IsNetBSD => RuntimeInformation.IsOSPlatform(OSPlatform.Create("NETBSD"));
public static bool IsAndroid => RuntimeInformation.IsOSPlatform(OSPlatform.Create("ANDROID"));
public static bool IsNotAndroid => !IsAndroid;
public static bool IsAndroidX64 => IsAndroid && Is64BitProcess;

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be IsX64Process? If its just Android X64? Is64BitProcess would apply to both X64 and Arm64 right

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Plus it would be more akin to the IsAndroidX86 right below

Copy link
Copy Markdown
MemberAuthor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you're right. Good catch!

@akoeplinger

Copy link
Copy Markdown
Member

This is actually a more widespread issue than just Android x64, disabled the tests on all Mono configurations in #74788

@ghostghost locked as resolved and limited conversation to collaborators Sep 29, 2022
Sign up for freeto subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants

@steveisok@akoeplinger@trylek@mdh1418