fc750ac8e0
Snapshots are now generally signed Mach-O dylibs loaded by dlopen, instead of ELF files mapped executable by the VM's loader. TEST=ci Change-Id: Id19877bed0bd0282b320f070904a848b0c076a54 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/505200 Reviewed-by: Tess Strickland <sstrickl@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
40 lines
1.2 KiB
Dart
40 lines
1.2 KiB
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=minimal_kernel_script.dart
|
|
|
|
// Tests that dill file produced with --minimal-kernel option
|
|
// works as expected.
|
|
|
|
import 'dart:io' show Platform;
|
|
|
|
import 'package:path/path.dart' as path;
|
|
import 'snapshot_test_helper.dart';
|
|
|
|
compileAndRunMinimalDillTest(List<String> extraCompilationArgs) async {
|
|
final testScriptUri = Platform.script.resolve('minimal_kernel_script.dart');
|
|
final message = 'Round_trip_message';
|
|
|
|
await withTempDir("minimal-kernel", (String temp) async {
|
|
final minimalDillPath = path.join(temp, 'minimal.dill');
|
|
await runGenKernel('BUILD MINIMAL DILL FILE', [
|
|
'--minimal-kernel',
|
|
'--no-link-platform',
|
|
...extraCompilationArgs,
|
|
'--output=$minimalDillPath',
|
|
testScriptUri.toFilePath(),
|
|
]);
|
|
|
|
final result = await runDart('RUN FROM MINIMAL DILL FILE', [
|
|
minimalDillPath,
|
|
message,
|
|
]);
|
|
expectOutput(message, result);
|
|
});
|
|
}
|
|
|
|
main() async {
|
|
await compileAndRunMinimalDillTest([]);
|
|
}
|