-
Notifications
You must be signed in to change notification settings - Fork 144
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
Triage integration tests that fail on windows #819
Comments
A (presumably) flakey test: https://github.com/google/autocxx/runs/5337017794?check_suite_focus=true - |
It's unusual that it's flaky. None of the already ignored Windows tests were flaky. The flakiness in tests that we saw while I was adding channels was in the beta and nightly channels on all of the architectures, due to incremental compilation bugs. There of course could be more of those. |
These are failing on Windows only for unknown reasons and will be investigated in #819.
These are failing on Windows only for unknown reasons and will be investigated in #819.
#817 shows that several integration tests fail on the nightly Windows
msvc
orgnu
rustup channelsSome of the causes of the failures are:
test_stringview
usesstring_view
. This requires C++17, and the flag for this is not supplied to the Windows compilerstest_forward_declaration
destructs aunique_ptr
of an incomplete type, which is non-compliant C++ #840test_bitset
contains Clang-specific__type_visibility__
attributestest_protected_inner_class
uses designated initialisers which is only compliant for C++20test_private_inner_class
uses designated initialisers which is only compliant for C++20Other test failures are reproducible, but so far untriaged
The text was updated successfully, but these errors were encountered: