-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Separate stress tests out and run them on node 1 #28270
Conversation
This ensures that they don't interfere with other tests.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps test_13559
and test_22566
and the test for jl_exit_on_sigint
also, if you're looking for more. I assume others will move or be added over time.
|
test/stress.jl
Outdated
|
||
# issue #22566 | ||
# issue #24037 (disabling on FreeBSD) | ||
if !Sys.iswindows() && !(Sys.isbsd() && !Sys.isapple()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good to enable it on FreeBSD?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know, is it? 😄 If you reenable locally it can you reproducing the freezing it was causing before?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you reenable locally it can you reproducing the freezing it was causing before?
I reenabled it.... seems fine now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great! Thanks for checking, I'll reenable it here.
macOS test failure is #26725 |
It was disabled in #24037 but reportedly seems to work okay when isolated into this separate, node 1 only test group.
I want to build at least 3 times to make sure no freezing again. |
All builds passed 🎉 🎉 |
There were test failures on Travis Linux (both 32- and 64-bit) related to Sockets not being able to connect, so I've restarted those builds to be safe. IIRC we don't run the Sockets tests at all on Circle. |
All good now. I'll go ahead and merge. |
This ensures that they don't interfere with other tests. Suggested by @vtjnash in #28201 (comment). Let me know if any other tests belong here as well.