]> Zhao Yanbai Git Server - minix.git/commitdiff
Added welcome message to POSIX test suite.
authorJorrit Herder <jnherder@minix3.org>
Tue, 7 Jun 2005 11:52:35 +0000 (11:52 +0000)
committerJorrit Herder <jnherder@minix3.org>
Tue, 7 Jun 2005 11:52:35 +0000 (11:52 +0000)
test/Makefile
test/run

index 0ee5053d0c54fc08c37fe7d5bd1f67dac2c96d0a..e9b8db6997dab5e54e6ed7a26b3519ae2b348f24 100644 (file)
@@ -25,7 +25,7 @@ $(BIGOBJ):
 $(ROOTOBJ):
        $(CC) $(CFLAGS) $@.c
        @install -c -S 10kw -o root -m 4755 a.out $@
-       rm a.out
+       @rm a.out
 
 clean: 
        rm -rf *.o *.s *.bak test? test?? t10a t11a t11b DIR*
index af37de9ae9f0bf3adf5f4d60472d0e478b0ce280..f2d7e06e3a6643d572f29ec6eef8ea76bc8df17f 100755 (executable)
--- a/test/run
+++ b/test/run
@@ -10,8 +10,13 @@ failed=`expr 0`                      # count number of tests that failed
 total=`expr 0`                 # total number of tests tried
 badones=                       # list of tests that failed
 
-# Run all the tests, keeping track of who 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 " "
+
+# Run all the tests, keeping track of who failed.
 for i in  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 \
          21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
 do total=`expr $total + 1`