You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue originally surfaced after this CL landed and was tracked in dart-lang/sdk#59784, assuming the failure was caused by the related CL.
After some digging, it turns out that the webdev tests can make a copy of the SDK under the temp directory for use in tests. This directory name was prefixed with sdk copy. Logging landed by @a-siva indicated that webdev/test/e2e_test.dart was failing with the following message:
C:\src\temp\sdk is not an AOT snapshot, it cannot be run with 'dartaotruntime'
Changing the copied SDK directory name prefix to sdk_copy resolved the issue, implying that paths with spaces aren't being handled properly somewhere in the pipeline.