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

Disable failing outerloop tests and fix a build issue in MonoAOTCompiler #89922

Merged
merged 1 commit into from
Aug 3, 2023

Commits on Aug 3, 2023

  1. Disable failing outerloop tests and fix a build issue in MonoAOTCompiler

    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
    akoeplinger committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    4e7d639 View commit details
    Browse the repository at this point in the history