]> Zhao Yanbai Git Server - minix.git/commitdiff
Fixed typo in run output;
authorJorrit Herder <jnherder@minix3.org>
Fri, 17 Jun 2005 08:51:28 +0000 (08:51 +0000)
committerJorrit Herder <jnherder@minix3.org>
Fri, 17 Jun 2005 08:51:28 +0000 (08:51 +0000)
Reduced NR_ITERATIONS for tests dealing with MAX_LINKS.

test/run
test/test20.c
test/test26.c

index f2d7e06e3a6643d572f29ec6eef8ea76bc8df17f..b34779d977efb9bd859a17a9e14500eb1889e6bf 100755 (executable)
--- a/test/run
+++ b/test/run
@@ -13,7 +13,7 @@ badones=                      # list of tests that failed
 # Print test welcome message
 clr
 echo "Running POSIX compliance test suite. There are 40 tests in total."
-echo "Please note that some tests may take a while, even a fast systems."
+echo "Please note that some tests may take a while, even on fast systems."
 echo " "
 
 # Run all the tests, keeping track of who failed.
index 193ed019e691fcead365a49a03fbff4759accebb..bb7d56f0dc50fad854365759119127618d6cb26a 100644 (file)
@@ -25,7 +25,7 @@
 #include <stdio.h>
 
 #define DIR_NULL (DIR*) NULL
-#define ITERATIONS         5
+#define ITERATIONS         3   /* LINK_MAX is high, so time consuming */
 #define MAX_FD           100   /* must be large enough to cause error */
 #define BUF_SIZE PATH_MAX+20
 #define ERR_CODE          -1   /* error return */
index 71a24fea997f1fcc0bf21540b61a2193c9606a62..7a2cd201fcbb411bd17040fb16240bc76d8ec2ae 100644 (file)
@@ -26,7 +26,7 @@ char ToLongName[NAME_MAX + 2];        /* Name of maximum +1 length */
 char ToLongPath[PATH_MAX + 1]; /* Same for path, both too long */
 
 #define MAX_ERROR 4
-#define ITERATIONS 4
+#define ITERATIONS 2           /* LINK_MAX is high, so time consuming. */
 
 #define System(cmd)    if (system(cmd) != 0) printf("``%s'' failed\n", cmd)
 #define Chdir(dir)     if (chdir(dir) != 0) printf("Can't goto %s\n", dir)