Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip failure tests on riscv64. #877

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

JasenChao
Copy link

These two tests don't fit riscv64 and therefore fail at build time, hopefully skipped.
This can prove that the modification is valid.

@@ -45,7 +45,7 @@ int main()

// Rounding issue, won't fix as it only happens on mingw 32bit.
// __aarch64__/graviton. It fails within the CI while outside is 100% success over 100s builds&runs
#if defined(__MINGW32__) || defined(__aarch64__) || defined(_M_ARM64)
#if defined(__MINGW32__) || defined(__aarch64__) || defined(_M_ARM64) || defined(__riscv)
Copy link
Member

Choose a reason for hiding this comment

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

this covers riscv32 & riscv64, but the commit message only says riscv64

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants