-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Failures on [vm/concurrency] Remove --(no-)enable-isolate-groups flag usage in tests #47632
Comments
This is an existing failure. It is just that the test itself went from being a multitest with Looking at the test it's pretty obvious that it doesn't work in AOT: test() {
...
if (!Platform.isWindows) {
Expect.isTrue(Platform.executable.endsWith('dart'));
Expect.isTrue(Platform.resolvedExecutable.endsWith('dart'));
} else {
Expect.isTrue(Platform.executable.endsWith('dart.exe'));
Expect.isTrue(Platform.resolvedExecutable.endsWith('dart.exe'));
}
...
}
main() {
...
test();
...
} In AOT we |
Currently failing on the following configurations:
|
Same testing infrastructure is probably responsible for this (old and new) failure: The tests
are failing on configurations
|
Uploaded cl/219520 to fix the test as well as a VM issue on the error path. Both issues have been around for a long time and weren't actually caused by my change. |
…in VM This fixes failures of standalone{,_2}/io/platform_test in AOT / AppJIT modes (and removes old status file markers which are ignored by approval system). It also fixes a Crash in vm/dart{,_2}/spawn_shutdown_test - where error handling was not correctly done - a `Dart_ExitScope()` was missing before a return. Issue #47632 TEST=standalone{,_2}/io/platform_test & vm/dart{,_2}/spawn_shutdown_test Change-Id: Ic4a8bcaa243c514b11f5127d77ec77259d60ca68 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/219520 Reviewed-by: Alexander Aprelev <aam@google.com> Commit-Queue: Martin Kustermann <kustermann@google.com>
Both |
There are new test failures on [vm/concurrency] Remove --(no-)enable-isolate-groups flag usage in tests.
The tests
are failing on configurations
/cc @mkustermann
The text was updated successfully, but these errors were encountered: