-
Notifications
You must be signed in to change notification settings - Fork 75
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
Fix broken tests on head due to Dart SDK update #2392
Conversation
yieldControlToDDS
@@ -1548,6 +1548,11 @@ ${globalToolConfiguration.loadStrategy.loadModuleSnippet}("dart_sdk").developer. | |||
return _rpcNotSupportedFuture('getVMTimelineMicros'); | |||
} | |||
|
|||
@override |
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.
#2388 has the actual implementation of this method, but I'm still working on getting all the tests passing on that PR.
await ws.close(); | ||
}, | ||
// TODO(elliette): Re-enable test. | ||
skip: true, |
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.
This will be enabled and fixed with #2388
); | ||
}, | ||
// TODO(elliette): Re-enable test. | ||
skip: true, |
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.
This will be enabled and fixed in #2388
}, | ||
}; | ||
|
||
// DDS should fail to start with existing vm clients. |
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.
DDS should only fail to start if there's an existing DDS instance. In the case of existing clients, the existing clients should be disconnected.
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.
Thanks! Will handle that in #2388, this change just skips the existing test
The skipped tests will be re-enabled with #2388, but I'm still working on getting all the tests passing in that PR