Skip to content

Commit 4afdfca

Browse files
Remove bringup: true from realm_checker and remove the redundant tool test. (flutter#137186)
Now that the realm checker is no longer in bringup, we can remove the tool test that checks for the empty realm file.
1 parent ebc6764 commit 4afdfca

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

.ci.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1100,7 +1100,6 @@ targets:
11001100
- .ci.yaml
11011101

11021102
- name: Linux realm_checker
1103-
bringup: true
11041103
recipe: flutter/flutter_drone
11051104
timeout: 60
11061105
properties:

packages/flutter_tools/test/general.shard/cache_test.dart

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -356,15 +356,6 @@ void main() {
356356

357357
expect(cache.storageBaseUrl, contains('flutter_archives_v2'));
358358
});
359-
360-
test('bin/internal/engine.realm is empty', () async {
361-
final FileSystem fileSystem = globals.fs;
362-
final String realmFilePath = fileSystem.path.join(
363-
getFlutterRoot(), 'bin', 'internal', 'engine.realm');
364-
final String realm = fileSystem.file(realmFilePath).readAsStringSync().trim();
365-
expect(realm, isEmpty,
366-
reason: 'The checked-in engine.realm file must be empty.');
367-
});
368359
});
369360

370361
testWithoutContext('flattenNameSubdirs', () {

0 commit comments

Comments
 (0)