Files
sdk/runtime/tests/vm/dart/split_aot_kernel_generation2_test.dart
T
Nicholas Shahan cdd1260ef0 [tests] Move regression test to run on all backends
This same error recently surfaced on a flutter web target.

Change-Id: If4c093cde85887105e93ab46469b1c3b2ea55d03
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/162243
Reviewed-by: Alexander Markov <alexmarkov@google.com>
Commit-Queue: Nicholas Shahan <nshahan@google.com>
2020-09-14 21:13:37 +00:00

19 lines
701 B
Dart

// Copyright (c) 2020, 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.
// OtherResources=../../../../tests/language/mixin/regress_flutter_55345_test.dart
// Runs regress_flutter_55345_test.dart using AOT kernel generation split into
// 2 steps using '--from-dill' option.
import 'dart:io' show Platform;
import 'split_aot_kernel_generation_test.dart'
show runSplitAOTKernelGenerationTest;
main() async {
await runSplitAOTKernelGenerationTest(Platform.script.resolve(
'../../../../tests/language/mixin/regress_flutter_55345_test.dart'));
}