fine tuning of tests
[svn/Cll1h/.git] / demos / performance / test-performance2
1 #!/bin/sh
2
3 cat print2.py
4 echo "Running..."
5 time ./print2.py > /dev/null
6
7 cat print2.pl
8 echo "Running..."
9 time ./print2.pl > /dev/null
10
11 cat cll1-print2.c
12 echo "Compiling..."
13 time make cll1-print2
14 echo "Running..."
15 time ./cll1-print2 > /dev/null
16
17 cat printf2.c
18 echo "Compiling..."
19 time make printf2
20 echo "Running..."
21 time ./printf2 > /dev/null
22
23 cat fputs2.c
24 echo "Compiling..."
25 time make fputs2
26 echo "Running..."
27 time ./fputs2 > /dev/null
This page took 0.435225 seconds and 4 git commands to generate.