Add post-submit failing test to close the tree for #94356 (#94390)

This commit is contained in:
Jenn Magder 2021-11-29 22:01:32 -08:00 committed by GitHub
parent 82735b8904
commit 361d416e6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 15 deletions

View File

@ -13,6 +13,10 @@ Future<void> main() async {
await createFlavorsTest().call(); await createFlavorsTest().call();
await createIntegrationTestFlavorsTest().call(); await createIntegrationTestFlavorsTest().call();
return TaskResult.success(null); // This is a test that we can use to close the tree until
// https://github.com/flutter/flutter/issues/74529 is addressed.
return TaskResult.failure('Failing to close the tree for https://github.com/flutter/flutter/issues/94356');
// return TaskResult.success(null);
}); });
} }

View File

@ -1,14 +0,0 @@
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import '../src/common.dart';
// This is a test that we can use to close the tree until
// https://github.com/flutter/flutter/issues/74529 is addressed.
void main() {
test('Fail unconditionally', () { // ignore: void_checks
fail('Failing to close the tree for https://github.com/flutter/flutter/issues/94356');
}); // Skip this test to re-open the tree.
}