forked from flutter/packages
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[framework] Skip 5 failing framework tests. (#143618)
Part of flutter/flutter#143616
- Loading branch information
1 parent
e0f126a
commit bb1c7a6
Showing
4 changed files
with
33 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// 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 'dart:io' as io; | ||
import 'package:flutter/foundation.dart'; | ||
|
||
/// Whether or not Flutter CI has configured Impeller for this test run. | ||
/// | ||
/// This is intended only to be used for a migration effort to enable Impeller | ||
/// on Flutter CI. | ||
/// | ||
/// See also: https://github.com/flutter/flutter/issues/143616 | ||
bool get impellerEnabled { | ||
if (kIsWeb) { | ||
return false; | ||
} | ||
return io.Platform.environment.containsKey('FLUTTER_TEST_IMPELLER'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters