Lines Matching defs:dir
445 struct dirent *dir;
454 while ((dir = readdir(d)) != NULL) {
455 if (!strncmp(dir->d_name, ".", 2))
457 if (!strncmp(dir->d_name, "..", 3))
460 printf("Testing heap: %s\n", dir->d_name);
462 ret = test_alloc_and_import(dir->d_name);
466 ret = test_alloc_zeroed(dir->d_name, 4 * 1024);
470 ret = test_alloc_zeroed(dir->d_name, ONE_MEG);
474 ret = test_alloc_compat(dir->d_name);
478 ret = test_alloc_errors(dir->d_name);