From 8a23b8034e7cfbdf607fd5e67cde55876cafe1ed Mon Sep 17 00:00:00 2001 From: Daco Harkes Date: Wed, 19 Feb 2020 08:53:39 +0000 Subject: [PATCH] [test/ffi] Re-enable disabled tests Undo commenting out of tests in https://dart-review.googlesource.com/c/sdk/+/121422 Change-Id: I51acc1fd23f93007b4e75c1b641a325027136c58 Cq-Include-Trybots: luci.dart.try:vm-ffi-android-debug-arm-try Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/136220 Reviewed-by: Martin Kustermann Commit-Queue: Daco Harkes --- tests/ffi/function_structs_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ffi/function_structs_test.dart b/tests/ffi/function_structs_test.dart index 37388768017..bf9ea5f86b9 100644 --- a/tests/ffi/function_structs_test.dart +++ b/tests/ffi/function_structs_test.dart @@ -21,8 +21,8 @@ typedef NativeCoordinateOp = Pointer Function(Pointer); void main() { testFunctionWithStruct(); - // testFunctionWithStructArray(); - // testFunctionWithVeryLargeStruct(); + testFunctionWithStructArray(); + testFunctionWithVeryLargeStruct(); } DynamicLibrary ffiTestFunctions = dlopenPlatformSpecific("ffi_test_functions");