| 254 | } |
| 255 | |
| 256 | int main(int argc, char* argv[]) |
| 257 | { |
| 258 | acl::log::stdout_open(true); |
| 259 | |
| 260 | test_pipe(); |
| 261 | |
| 262 | (void) argc; |
| 263 | (void) argv; |
| 264 | |
| 265 | atexit(check); |
| 266 | |
| 267 | // win32 �£��� DLL �в���ʹ���ڴ�ع��� |
| 268 | #ifdef USE_SLICE |
| 269 | # ifndef ACL_DLL |
| 270 | acl::acl_slice_init(); |
| 271 | # endif |
| 272 | #endif |
| 273 | |
| 274 | test_unzip_file(); |
| 275 | |
| 276 | int ret1 = 0, ret2 = 0; |
| 277 | |
| 278 | ret1 = test_zip_stream(); |
| 279 | ret2 = test_compress(); |
| 280 | test_zlib_pipe(); |
| 281 | |
| 282 | printf("enter any key to call functions registered by atexit\r\n"); |
| 283 | getchar(); |
| 284 | return (ret1 == 0 && ret2 == 0 ? 0 : 1); |
| 285 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…