Unverified Commit 0fa01b21 authored by Christopher Fujino's avatar Christopher Fujino Committed by GitHub

[flutter_tools] allow tool integration tests to quit on SIGINT (#136271)

fixes https://github.com/flutter/flutter/issues/136270
parent 09ed4f1f
...@@ -382,9 +382,8 @@ class NoopCrashReporter implements CrashReporter { ...@@ -382,9 +382,8 @@ class NoopCrashReporter implements CrashReporter {
} }
class LocalFileSystemBlockingSetCurrentDirectory extends LocalFileSystem { class LocalFileSystemBlockingSetCurrentDirectory extends LocalFileSystem {
LocalFileSystemBlockingSetCurrentDirectory() : super.test( // Use [FakeSignals] so developers running the test suite can kill the test runner.
signals: LocalSignals.instance, LocalFileSystemBlockingSetCurrentDirectory() : super.test(signals: FakeSignals());
);
@override @override
set currentDirectory(dynamic value) { set currentDirectory(dynamic value) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment