-
Notifications
You must be signed in to change notification settings - Fork 132
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
WebScenarioTests smoke tests fail on mono with unexpected exit code. #3174
Comments
I would guess not since we don't have mono CI. |
[Triage] #2596 tracks adding a mono configuration to CI. |
@tmds - Is this issue still applicable? You enabled CI on Mono with #2596 but I still see dotnet/runtime#81093 is still active. What am I missing? |
We've updated the test suite to account for the Mono behavior. When the fix is merged in the runtime repo, the suite will fail again, and we have to undo those changes. |
The mono issue that caused the different exit code was fixed in dotnet/runtime#100056. We now have the same exit code as coreclr so remove the mono special case. Fixes dotnet/source-build#3174 Fixes dotnet/source-build#4514
From the log:
This test expects
0
as an exit value ofdotnet run
after sendingSIGTERM
to it.However the exit code is
143
, which is the expected exit code for a process that gets killed withSIGTERM
but doesn't handle it.It can be reproduced easily with a mono sdk by sending
SIGTERM
to adotnet run
process that is running theweb
template.The exit code for this process is
143
with a mono runtime, and0
with a coreclr runtime.Has someone run this test on mono before? Did it ever pass?
cc @omajid @crummel @MichaelSimons
The text was updated successfully, but these errors were encountered: