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