-
Notifications
You must be signed in to change notification settings - Fork 28
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
Language/Libraries_and_Scripts/Scripts/top_level_main_t01.dart is a fork bomb on AOT #1137
Comments
https://github.com/dart-lang/co19/blob/master/Language/Libraries_and_Scripts/Scripts/top_level_main_t06.dart follows a similar pattern. |
simarm64 is also affected by the fork bomb somehow. |
The top_level_main tests starts themselves via Platform.resolvedExecutable which causes them to turn into a fork bombs on AOT. On web, dart:io is not supported. dart-lang/co19#1137 findProxy tests are timing out on all relevant platforms. dart-lang/co19#1129 Cq-Include-Trybots: luci.dart.try:vm-kernel-precomp-nnbd-win-release-x64-try Change-Id: If1e4d0c26d5d40cd60e5e8a8dd4600b85668da5e Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/209706 Reviewed-by: William Hesse <whesse@google.com>
dart-lang/co19#1137 Change-Id: I32e81daed87ad8943023ad923fddd686b3b2362e Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/209961 Reviewed-by: William Hesse <whesse@google.com>
Problem here was not in use of
And then tried to run To fix added |
The test used
Platform.resolvedExecutable
with the intention of finding thedart
executable but on AOT configurations this will beout.snapshot
(the test as AOT compiled executable), so the test starts a process of itself which starts a process of itself...This causes Windows bots to run out of memory when running the test and Linux bots to timeout the test.
The text was updated successfully, but these errors were encountered: