From 51dbc768d8a42ab81aadcf5fbc23ff45f1285e38 Mon Sep 17 00:00:00 2001 From: Zachary Anderson Date: Thu, 18 Mar 2021 13:27:01 -0700 Subject: [PATCH] Manually close the tree for https://github.com/flutter/flutter/issues/78567 (#78568) --- .../tasks/hot_mode_dev_cycle_macos_target__benchmark.dart | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev/devicelab/bin/tasks/hot_mode_dev_cycle_macos_target__benchmark.dart b/dev/devicelab/bin/tasks/hot_mode_dev_cycle_macos_target__benchmark.dart index bbb0a07fb0e..0bad7e376a3 100644 --- a/dev/devicelab/bin/tasks/hot_mode_dev_cycle_macos_target__benchmark.dart +++ b/dev/devicelab/bin/tasks/hot_mode_dev_cycle_macos_target__benchmark.dart @@ -2,9 +2,14 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +import 'package:flutter_devicelab/framework/task_result.dart'; import 'package:flutter_devicelab/tasks/hot_mode_tests.dart'; import 'package:flutter_devicelab/framework/framework.dart'; Future main() async { await task(createHotModeTest(deviceIdOverride: 'macos')); + + // TODO(zra): https://github.com/flutter/flutter/issues/78567 + throw TaskResult.failure( + 'Tree was manually closed for Android version of this test https://github.com/flutter/flutter/issues/78567'); }