Source
2376
2376
test_contig = test_chunk = test_compact = 0;
2377
2377
for(argno = 1; argno < argc; argno++) {
2378
2378
if(!strcmp(argv[argno], "contiguous"))
2379
2379
test_contig = 1;
2380
2380
else if(!strcmp(argv[argno], "chunked"))
2381
2381
test_chunk = 1;
2382
2382
else if(!strcmp(argv[argno], "compact"))
2383
2383
test_compact =1;
2384
2384
else {
2385
2385
fprintf(stderr, "usage: %s [contiguous] [chunked] [compact]\n", argv[0]);
2386
-
exit(1);
2386
+
exit(EXIT_FAILURE);
2387
2387
}
2388
2388
} /* end for */
2389
2389
} /* end if */
2390
2390
2391
2391
h5_reset();
2392
2392
fapl = h5_fileaccess();
2393
2393
2394
2394
/* Property list tests */
2395
2395
nerrors += test_getset();
2396
2396
nerrors += test_getset_vl(fapl);