don't use the field for filtering.
diff --git a/test/test.c b/test/test.c
index 2decea7..ce6cc45 100644
--- a/test/test.c
+++ b/test/test.c
@@ -509,7 +509,8 @@
 	ich = strlen(rgchFullName);
 
 	while ((dp = readdir(dirp)) != NULL) {
-		if (dp->d_type != DT_REG) continue;
+	//	if (dp->d_type != DT_REG) continue;
+		printf("type = %d\n", dp->d_type);
 		rgchFullName[ich] = 0;
 		strcat(rgchFullName, dp->d_name);
 		printf("Run test '%s'", rgchFullName);