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)
6969 size_t buffer_size = 500 * 1024 ;
7070 char buffer [500 * 1024 ];
7171 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 );
7373 dispatch_source_cancel (source );
7474 });
7575
@@ -128,7 +128,7 @@ stage2(void)
128128
129129 dispatch_source_set_event_handler (source , ^{
130130 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 );
132132 char buffer [500 * 1024 ];
133133 ssize_t sz = dispatch_test_fd_read (fd , buffer , sizeof (buffer ));
134134 actual += sz ;
You can’t perform that action at this time.
0 commit comments