updatet performance tests and results
[svn/Cll1h/.git] / demos / performance / test-performance
... / ...
CommitLineData
1#!/bin/sh
2clear
3
4cat print.py
5echo "Running..."
6time ./print.py > /dev/null
7
8cat print.pl
9echo "Running..."
10time ./print.pl > /dev/null
11
12cat cll1-print.c
13echo "Compiling..."
14time make cll1-print
15echo "Running..."
16time ./cll1-print > /dev/null
17
18cat printf.c
19echo "Compiling..."
20time make printf
21echo "Running..."
22time ./printf > /dev/null
23
24cat puts.c
25echo "Compiling..."
26time make puts
27echo "Running..."
28time ./puts > /dev/null
29
30cat fputs.c
31echo "Compiling..."
32time make fputs
33echo "Running..."
34time ./fputs > /dev/null
This page took 0.083048 seconds and 4 git commands to generate.