Files
sdk/runtime/tests/vm/dart/minimal_kernel_test.dart
T
Ryan Macnak fc750ac8e0 [build] Remove unsigned executable memory permissions from the AOT runtime on Mac.
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>
2026-06-01 07:21:29 -07:00

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([]);
}