Files
sdk/tests/ffi/negative_function_test.dart
T
Samir Jindel 580f44aa83 [vm] Enable running FFI tests on Android in JIT-mode.
* Move FFI tests into a separate test suite.
  They never belonged in standalone_2/ since they are not only available in
  the standalone VM. Also, we want to have a separate status file.

* Add new "SharedObjects" option to test files to copy needed shared objects
  to the Android device for testing.

* Add support to compiler/runtime_configuration.dart for testing JIT-mode on Android.

* Add new configurations and builders to test_matrix.json to test JIT-mode on Android.

* Clean up status file entries for FFI (we didn't need to special-case stress & subtype tests).

Change-Id: Ifb32ef7051754f477d00ecd7a0f9b19ca8a66eae
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/97334
Commit-Queue: Samir Jindel <sjindel@google.com>
Reviewed-by: William Hesse <whesse@google.com>
Reviewed-by: Daco Harkes <dacoharkes@google.com>
2019-03-25 16:14:18 +00:00

64 lines
1.9 KiB
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.
//
// Dart test program for testing error handling with dart:ffi functions.
//
// SharedObjects=ffi_test_functions
import 'dart:ffi' as ffi;
import 'dylib_utils.dart';
import "package:expect/expect.dart";
main() {
testWrongArity();
testWrongTypes();
}
ffi.DynamicLibrary ffiTestFunctions =
dlopenPlatformSpecific("ffi_test_functions");
typedef NativeBinaryOp = ffi.Int32 Function(ffi.Int32, ffi.Int32);
typedef BinaryOp = int Function(int, int);
typedef NativeUnaryOp = ffi.Int64 Function(ffi.Pointer<ffi.Int64>);
typedef UnaryOp = int Function(ffi.Pointer<ffi.Int64>);
void testWrongArity() {
{
dynamic sumPlus42 =
ffiTestFunctions.lookupFunction<NativeBinaryOp, BinaryOp>("SumPlus42");
Expect.throwsNoSuchMethodError(() => sumPlus42(10));
Expect.throwsNoSuchMethodError(() => sumPlus42(10, 11, 12));
Expect.throwsNoSuchMethodError(() => sumPlus42(10, 11, 12, y: 13));
}
{
Function sumPlus42 =
ffiTestFunctions.lookupFunction<NativeBinaryOp, BinaryOp>("SumPlus42");
Expect.throwsNoSuchMethodError(() => sumPlus42(10));
Expect.throwsNoSuchMethodError(() => sumPlus42(10, 11, 12));
Expect.throwsNoSuchMethodError(() => sumPlus42(10, 11, 12, y: 13));
}
}
void testWrongTypes() {
{
dynamic sumPlus42 =
ffiTestFunctions.lookupFunction<NativeBinaryOp, BinaryOp>("SumPlus42");
Expect.throwsTypeError(() => sumPlus42("abc", "def"));
}
{
Function sumPlus42 =
ffiTestFunctions.lookupFunction<NativeBinaryOp, BinaryOp>("SumPlus42");
Expect.throwsTypeError(() => sumPlus42("abc", "def"));
}
{
dynamic pointerOp = ffiTestFunctions
.lookupFunction<NativeUnaryOp, UnaryOp>("Assign1337Index1");
Expect.throwsTypeError(() => pointerOp(0));
}
}