-
Notifications
You must be signed in to change notification settings - Fork 29.8k
[flutter_tools] revert change to SETLOCAL ENABLEDELAYEDEXPANSION #86000
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
[flutter_tools] revert change to SETLOCAL ENABLEDELAYEDEXPANSION #86000
Conversation
zanderso
left a comment
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.
lgtm w/ questions.
| Directory tempDir; | ||
|
|
||
| setUp(() { | ||
| tempDir = createResolvedTempDirectorySync('exit_code_test.'); |
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.
Does this need to be flutter_exit_code_test. or is the flutter_ added by createResolvedTempDirectorySync?
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.
yup -
| final Directory tempDirectory = fileSystem.systemTempDirectory.createTempSync('flutter_$prefix'); |
| ]); | ||
| expect(result.stdout, contains('args: ["(?!Golden).+"]')); | ||
| }, skip: !platform.isWindows); | ||
| }, skip: 'Reverted in https://github.com/flutter/flutter/pull/86000'); |
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.
Huh. I didn't know this could be a string. Does this just act like true, then?
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.
Yup, but I think it will display in the test output
|
Gold has detected about 2 new digest(s) on patchset 5. |
|
The customer tests : customer_testing-linux shard seems to be stuck in a bad git state. In theory this change shouldn't effect it so i'm going to land and worry about that later |
|
Golden file changes have been found for this pull request. Click here to view and triage (e.g. because this is an intentional change). If you are still iterating on this change and are not ready to resolve the images on the Flutter Gold dashboard, consider marking this PR as a draft pull request above. You will still be able to view image results on the dashboard, commenting will be silenced, and the check will not try to resolve itself until marked ready for review. For more guidance, visit Writing a golden file test for Reviewers: Read the Tree Hygiene page and make sure this patch meets those guidelines before LGTMing. |
|
Landing to prevent more breakages from creeping in the tree |
Revert #85288 , because it changes how error codes are propagated.
Adds a test that proves that exit codes are roughly correct ( oh boy why didn't we have this one before)
Fixes #85989