| // 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. |
| |
| // VMOptions=--dwarf-stack-traces --save-debugging-info=async_lazy_debug.so --lazy-async-stacks --no-causal-async-stacks --no-use-bare-instructions |
| |
| import 'dart:async'; |
| import 'dart:io'; |
| |
| import 'utils.dart'; |
| |
| Future<void> main(List<String> args) async { |
| // We won't have access to the debugging info file on Android. |
| if (Platform.isAndroid) return; |
| |
| await doTestsLazy('async_lazy_debug.so'); |
| } |