File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ stage1(int stage)
69
69
size_t buffer_size = 500 * 1024 ;
70
70
char buffer [500 * 1024 ];
71
71
ssize_t sz = dispatch_test_fd_read (fd , buffer , buffer_size );
72
- test_double_less_than_or_equal ("kevent read 1" , sz , buffer_size + 1 );
72
+ test_sizet_less_than_or_equal ("kevent read 1" , sz , buffer_size + 1 );
73
73
dispatch_source_cancel (source );
74
74
});
75
75
@@ -128,7 +128,7 @@ stage2(void)
128
128
129
129
dispatch_source_set_event_handler (source , ^{
130
130
size_t est = dispatch_source_get_data (source );
131
- test_double_less_than_or_equal ("estimated" , est , expected - actual );
131
+ test_sizet_less_than_or_equal ("estimated" , est , expected - actual );
132
132
char buffer [500 * 1024 ];
133
133
ssize_t sz = dispatch_test_fd_read (fd , buffer , sizeof (buffer ));
134
134
actual += sz ;
You can’t perform that action at this time.
0 commit comments