fine tuning of tests
[svn/Cll1h/.git] / demos / performance / test-performance
index c752da474747aad5f054791cad8a53e25b3f848e..c7e1ddf6c242a7899436c23ebce7af65c0fb728c 100755 (executable)
@@ -1,24 +1,33 @@
 #!/bin/sh
-make cll1-print
-make printf
-make puts
-make fputs
-clear
+
 cat print.py
 echo "Running..."
-time ./print.py &> /dev/null
+time ./print.py > /dev/null
+
 cat print.pl
 echo "Running..."
-time ./print.pl &> /dev/null
+time ./print.pl > /dev/null
+
 cat cll1-print.c
+echo "Compiling..."
+time make cll1-print
 echo "Running..."
-time ./cll1-print &> /dev/null
+time ./cll1-print > /dev/null
+
 cat printf.c
+echo "Compiling..."
+time make printf
 echo "Running..."
-time ./printf &> /dev/null
+time ./printf > /dev/null
+
 cat puts.c
+echo "Compiling..."
+time make puts
 echo "Running..."
-time ./puts &> /dev/null
+time ./puts > /dev/null
+
 cat fputs.c
+echo "Compiling..."
+time make fputs
 echo "Running..."
-time ./fputs &> /dev/null
+time ./fputs > /dev/null
This page took 0.133646 seconds and 4 git commands to generate.