From 4afdfca264a4d5afcac9fe6df08f591a523dd0a3 Mon Sep 17 00:00:00 2001 From: Jackson Gardner Date: Tue, 24 Oct 2023 18:09:18 -0700 Subject: [PATCH] Remove `bringup: true` from realm_checker and remove the redundant tool test. (#137186) Now that the realm checker is no longer in bringup, we can remove the tool test that checks for the empty realm file. --- .ci.yaml | 1 - .../flutter_tools/test/general.shard/cache_test.dart | 9 --------- 2 files changed, 10 deletions(-) diff --git a/.ci.yaml b/.ci.yaml index 561b96d617..fe21b91cc6 100644 --- a/.ci.yaml +++ b/.ci.yaml @@ -1100,7 +1100,6 @@ targets: - .ci.yaml - name: Linux realm_checker - bringup: true recipe: flutter/flutter_drone timeout: 60 properties: diff --git a/packages/flutter_tools/test/general.shard/cache_test.dart b/packages/flutter_tools/test/general.shard/cache_test.dart index f5b7b6a645..fe9d14dbef 100644 --- a/packages/flutter_tools/test/general.shard/cache_test.dart +++ b/packages/flutter_tools/test/general.shard/cache_test.dart @@ -356,15 +356,6 @@ void main() { expect(cache.storageBaseUrl, contains('flutter_archives_v2')); }); - - test('bin/internal/engine.realm is empty', () async { - final FileSystem fileSystem = globals.fs; - final String realmFilePath = fileSystem.path.join( - getFlutterRoot(), 'bin', 'internal', 'engine.realm'); - final String realm = fileSystem.file(realmFilePath).readAsStringSync().trim(); - expect(realm, isEmpty, - reason: 'The checked-in engine.realm file must be empty.'); - }); }); testWithoutContext('flattenNameSubdirs', () {