Skip overall_experience_test.dart: flutter run writes and clears pidfile appropriately (#93026)

This commit is contained in:
keyonghan 2021-11-03 16:06:34 -07:00 committed by GitHub
parent 9cfefafdeb
commit 71e38aaa07
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -361,7 +361,9 @@ void main() {
} finally {
tryToDelete(fileSystem.directory(tempDirectory));
}
}, skip: Platform.isWindows); // [intended] Windows doesn't support sending signals so we don't care if it can store the PID.
// This test is expected to be skipped when Platform.isWindows:
// [intended] Windows doesn't support sending signals so we don't care if it can store the PID.
}, skip: true); // Flake: https://github.com/flutter/flutter/issues/92042
testWithoutContext('flutter run handle SIGUSR1/2', () async {
final String tempDirectory = fileSystem.systemTempDirectory.createTempSync('flutter_overall_experience_test.').resolveSymbolicLinksSync();