a846098c18
Also build Dart_LoadELF_Fd on Linux as well to get minimal coverage for Fuchsia. Change-Id: I4be3eeae3e4559e95413fd60a26b9e6d2edabb32 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/127644 Commit-Queue: Samir Jindel <sjindel@google.com> Reviewed-by: Martin Kustermann <kustermann@google.com>
13 lines
396 B
Dart
13 lines
396 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.
|
|
//
|
|
// VMOptions=--force-load-elf-from-memory
|
|
//
|
|
// Tests the in-memory ELF loader, which loads an ELF image without an
|
|
// underlying file.
|
|
|
|
main() {
|
|
print("Test successful.");
|
|
}
|