File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import 'package:ffi/ffi.dart';
12
12
13
13
import 'dylib_utils.dart' ;
14
14
15
- Function (Pointer <Utf8 >) createGetSender (SendPort sendPort) {
15
+ Function (Pointer <Utf8 >) createGetSender (final SendPort sendPort) {
16
16
return (Pointer <Utf8 > responsePointer) {
17
17
final typedList = responsePointer.cast <Uint8 >().asTypedList (
18
18
responsePointer.length,
@@ -57,7 +57,7 @@ Future<String> httpGet(String uri) async {
57
57
@pragma ('vm:shared' )
58
58
late int counter;
59
59
60
- Function (Pointer <Utf8 >) createServeSender (SendPort sendPort) {
60
+ Function (Pointer <Utf8 >) createServeSender (final SendPort sendPort) {
61
61
return (Pointer <Utf8 > requestPointer) {
62
62
counter++ ;
63
63
final typedList = requestPointer.cast <Uint8 >().asTypedList (
Original file line number Diff line number Diff line change @@ -15,8 +15,6 @@ ffi/*: SkipByDesign # FFI skips, see ffi.status
15
15
*: Skip # Not yet triaged.
16
16
17
17
[ $arch != x64 || $compiler != dartk || $system != linux || $hot_reload || $hot_reload_rollback ]
18
- ffi/http/test/http_test: SkipByDesign
19
- ffi/httpIG/test/http_test: SkipByDesign
20
18
ffi/sqlite/test/sqlite_test: SkipByDesign # FFI not supported or libsqlite3.so not available.
21
19
22
20
[ $runtime == d8 || $browser ]
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ function_callbacks_structs_by_value_generated_test/*: Skip # Test harness doesn'
58
58
function_callbacks_structs_by_value_native_callable_generated_test/*: Skip # Test harness doesn't support multitest with Fuchsia
59
59
function_callbacks_subtype_test/*: Skip # Test harness doesn't support multitest with Fuchsia
60
60
isolate_group_bound_callback_test: Skip # gen_snapshot requires experimental-shared-data flag
61
+ isolate_group_bound_captured_local_test: Skip # gen_snapshot requires experimental-shared-data flag
61
62
isolate_group_bound_init_test: Skip # gen_snapshot requires experimental-shared-data flag
62
63
isolate_group_bound_send_test: Skip # gen_snapshot requires experimental-shared-data flag
63
64
native_assets/*: Skip # Source not available in the emulator
You can’t perform that action at this time.
0 commit comments