-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Disable failing outerloop tests and fix a build issue in MonoAOTCompiler #89922
Conversation
Tagging subscribers to this area: @directhex Issue DetailsSee #89921 for the test failures. Additionally, the Android build was failing while compiling an AOT test due to this error:
This is because we turned on Fixes #89566
|
155058d
to
f4696c3
Compare
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
f4696c3
to
1cd4959
Compare
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
See dotnet#89921 for the test failures. Additionally, the Android build was failing while compiling an AOT test due to this error: ``` /__w/1/s/artifacts/bin/Android.Device_Emulator.Aot.Test/Release/net8.0/android-x64/AppBundle/modules.c:51:6: error: no previous prototype for function 'register_aot_modules' [-Werror,-Wmissing-prototypes] void register_aot_modules () ^ ``` This is because we turned on `-Werror=missing-prototypes` in dotnet#89197 but the MonoAOTCompiler didn't emit a function prototype in modules.c Fixes dotnet#89566
1cd4959
to
4e7d639
Compare
/azp run runtime-android |
Azure Pipelines successfully started running 1 pipeline(s). |
See #89921 for the test failures.
Additionally, the Android build was failing while compiling an AOT test due to this error:
This is because we turned on
-Werror=missing-prototypes
in #89197 but the MonoAOTCompiler didn't emit a function prototype in modules.cFixes #89566