Files
sdk/pkg/vm_service/test/evaluate_with_scope_test.dart
Derek Xu 13f5fc6b16 [VM/Service] Fix evaluate_with_scope_with_resident_compiler_test
This test is currently marked as flaky
(https://dart-current-results.web.app/#/filter=pkg/vm_service/test/evaluate_with_scope_with_resident_compiler_test&showAll)
and I believe that this change will fix it.

Issue: https://github.com/dart-lang/sdk/issues/59909
Change-Id: Ib13d298347c1ebd768e4c9ac8fd5449e8291c870
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/410780
Commit-Queue: Derek Xu <derekx@google.com>
Reviewed-by: Ben Konyi <bkonyi@google.com>
2025-02-19 11:12:28 -08:00

15 lines
508 B
Dart

// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'common/test_helper.dart';
import 'evaluate_with_scope_test_common.dart';
Future<void> main([args = const <String>[]]) => runIsolateTests(
args,
evaluteWithScopeTests,
'evaluate_with_scope_test.dart',
testeeBefore: testeeMain,
pauseOnExit: true,
);