From 71e38aaa0770c476fa44d3789cb27d89dd5c21cd Mon Sep 17 00:00:00 2001 From: keyonghan <54558023+keyonghan@users.noreply.github.com> Date: Wed, 3 Nov 2021 16:06:34 -0700 Subject: [PATCH] Skip overall_experience_test.dart: flutter run writes and clears pidfile appropriately (#93026) --- .../test/integration.shard/overall_experience_test.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/flutter_tools/test/integration.shard/overall_experience_test.dart b/packages/flutter_tools/test/integration.shard/overall_experience_test.dart index 8f49bba039..91325061d5 100644 --- a/packages/flutter_tools/test/integration.shard/overall_experience_test.dart +++ b/packages/flutter_tools/test/integration.shard/overall_experience_test.dart @@ -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();