mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 08:20:31 +00:00
8516cdc587
Splits up tests/ffi/function_structs_by_value_generated_test.dart in - compounds - non-leaf calls - leaf calls We could also consider splitting on chunks from the `functions` from tests/ffi/generator/structs_by_value_tests_configuration.dart as a follow up. TEST=This only splits up the tests, please reapprove failures. Expected failures: https://dart-ci.firebaseapp.com/current_results/#/filter=ffi - windows precompiled https://github.com/dart-lang/sdk/issues/40564 - mac arm64 https://github.com/dart-lang/sdk/issues/46349 Bug: https://github.com/dart-lang/sdk/issues/45007 Change-Id: Id3d9987cbc1e09f579b8cc68ce72fe5d36348b80 Cq-Include-Trybots: luci.dart.try:vm-kernel-precomp-nnbd-win-release-x64-try,vm-kernel-precomp-win-release-x64-try,vm-kernel-precomp-win-debug-x64c-try,pkg-mac-release-arm64-try,vm-kernel-mac-release-arm64-try,vm-kernel-nnbd-mac-debug-arm64-try,vm-kernel-nnbd-mac-release-arm64-try,vm-kernel-precomp-nnbd-mac-release-arm64-try Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/216666 Reviewed-by: Clement Skau <cskau@google.com>
166 lines
4.5 KiB
Dart
166 lines
4.5 KiB
Dart
// Copyright (c) 2021, 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.
|
|
//
|
|
// SharedObjects=ffi_test_functions
|
|
|
|
// @dart = 2.9
|
|
|
|
import 'dart:ffi';
|
|
|
|
import "package:expect/expect.dart";
|
|
import 'package:ffi/ffi.dart';
|
|
|
|
// Reuse compound definitions.
|
|
import 'function_structs_by_value_generated_compounds.dart';
|
|
|
|
void main() {
|
|
testSizeOf();
|
|
testLoad();
|
|
testLoadMultiAnnotation();
|
|
testStore();
|
|
testToString();
|
|
testRange();
|
|
}
|
|
|
|
void testSizeOf() {
|
|
Expect.equals(32, sizeOf<Struct32BytesInlineArrayMultiDimensionalInt>());
|
|
Expect.equals(64, sizeOf<Struct64BytesInlineArrayMultiDimensionalInt>());
|
|
}
|
|
|
|
/// Tests the load of nested `Array`s.
|
|
///
|
|
/// Only stores into arrays which do not have nested arrays.
|
|
void testLoad() {
|
|
final Pointer<Struct32BytesInlineArrayMultiDimensionalInt> pointer = calloc();
|
|
final struct = pointer.ref;
|
|
final array = struct.a0;
|
|
for (int i = 0; i < 2; i++) {
|
|
for (int j = 0; j < 2; j++) {
|
|
for (int k = 0; k < 2; k++) {
|
|
for (int l = 0; l < 2; l++) {
|
|
for (int m = 0; m < 2; m++) {
|
|
array[i][j][k][l][m] = i + j + k + l + m;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
for (int i = 0; i < 2; i++) {
|
|
for (int j = 0; j < 2; j++) {
|
|
for (int k = 0; k < 2; k++) {
|
|
for (int l = 0; l < 2; l++) {
|
|
for (int m = 0; m < 2; m++) {
|
|
Expect.equals(i + j + k + l + m, array[i][j][k][l][m]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
calloc.free(pointer);
|
|
}
|
|
|
|
/// Tests the load of nested `Array`s.
|
|
///
|
|
/// Only stores into arrays which do not have nested arrays.
|
|
void testLoadMultiAnnotation() {
|
|
final Pointer<Struct64BytesInlineArrayMultiDimensionalInt> pointer = calloc();
|
|
final struct = pointer.ref;
|
|
final array = struct.a0;
|
|
for (int i = 0; i < 2; i++) {
|
|
for (int j = 0; j < 2; j++) {
|
|
for (int k = 0; k < 2; k++) {
|
|
for (int l = 0; l < 2; l++) {
|
|
for (int m = 0; m < 2; m++) {
|
|
for (int o = 0; o < 2; o++) {
|
|
array[i][j][k][l][m][o] = i + j + k + l + m + o;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
for (int i = 0; i < 2; i++) {
|
|
for (int j = 0; j < 2; j++) {
|
|
for (int k = 0; k < 2; k++) {
|
|
for (int l = 0; l < 2; l++) {
|
|
for (int m = 0; m < 2; m++) {
|
|
for (int o = 0; o < 2; o++) {
|
|
Expect.equals(i + j + k + l + m + o, array[i][j][k][l][m][o]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
calloc.free(pointer);
|
|
}
|
|
|
|
void testStore() {
|
|
final Pointer<Struct32BytesInlineArrayMultiDimensionalInt> pointer = calloc();
|
|
final struct = pointer.ref;
|
|
final array = struct.a0;
|
|
for (int i = 0; i < 2; i++) {
|
|
for (int j = 0; j < 2; j++) {
|
|
for (int k = 0; k < 2; k++) {
|
|
for (int l = 0; l < 2; l++) {
|
|
for (int m = 0; m < 2; m++) {
|
|
array[i][j][k][l][m] = i + j + k + l + m;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
array[0] = array[1]; // Copy many things.
|
|
for (int j = 0; j < 2; j++) {
|
|
for (int k = 0; k < 2; k++) {
|
|
for (int l = 0; l < 2; l++) {
|
|
for (int m = 0; m < 2; m++) {
|
|
Expect.equals(array[1][j][k][l][m], array[0][j][k][l][m]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
calloc.free(pointer);
|
|
}
|
|
|
|
// // Tests the toString of the test generator.
|
|
void testToString() {
|
|
final Pointer<Struct32BytesInlineArrayMultiDimensionalInt> pointer = calloc();
|
|
final struct = pointer.ref;
|
|
final array = struct.a0;
|
|
for (int i = 0; i < 2; i++) {
|
|
for (int j = 0; j < 2; j++) {
|
|
for (int k = 0; k < 2; k++) {
|
|
for (int l = 0; l < 2; l++) {
|
|
for (int m = 0; m < 2; m++) {
|
|
array[i][j][k][l][m] = 16 * i + 8 * j + 4 * k + 2 * l + m;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
Expect.equals(
|
|
"([[[[[0, 1], [2, 3]], [[4, 5], [6, 7]]], [[[8, 9], [10, 11]], [[12, 13], [14, 15]]]], [[[[16, 17], [18, 19]], [[20, 21], [22, 23]]], [[[24, 25], [26, 27]], [[28, 29], [30, 31]]]]])",
|
|
struct.toString());
|
|
calloc.free(pointer);
|
|
}
|
|
|
|
void testRange() {
|
|
final pointer = calloc<Struct32BytesInlineArrayMultiDimensionalInt>();
|
|
final struct = pointer.ref;
|
|
final array = struct.a0;
|
|
array[0];
|
|
array[1];
|
|
Expect.throws(() => array[-1]);
|
|
Expect.throws(() => array[-1] = array[1]);
|
|
Expect.throws(() => array[2]);
|
|
Expect.throws(() => array[2] = array[1]);
|
|
array[0][0];
|
|
array[0][1];
|
|
Expect.throws(() => array[0][-1]);
|
|
Expect.throws(() => array[0][-1] = array[0][1]);
|
|
Expect.throws(() => array[0][2]);
|
|
Expect.throws(() => array[0][2] = array[0][1]);
|
|
calloc.free(pointer);
|
|
}
|