advanced hello world :-)
[svn/Cll1h/.git] / demos / performance / test-performance
CommitLineData
420bb771 1#!/bin/sh
81088cec 2
420bb771 3cat print.py
4echo "Running..."
dfe0680a 5time ./print.py > /dev/null
81088cec 6
420bb771 7cat print.pl
8echo "Running..."
dfe0680a 9time ./print.pl > /dev/null
81088cec 10
420bb771 11cat cll1-print.c
81088cec 12echo "Compiling..."
13time make cll1-print
420bb771 14echo "Running..."
dfe0680a 15time ./cll1-print > /dev/null
81088cec 16
420bb771 17cat printf.c
81088cec 18echo "Compiling..."
19time make printf
420bb771 20echo "Running..."
dfe0680a 21time ./printf > /dev/null
81088cec 22
420bb771 23cat puts.c
81088cec 24echo "Compiling..."
25time make puts
420bb771 26echo "Running..."
dfe0680a 27time ./puts > /dev/null
81088cec 28
420bb771 29cat fputs.c
81088cec 30echo "Compiling..."
830ff42e 31time make fputs
420bb771 32echo "Running..."
dfe0680a 33time ./fputs > /dev/null
This page took 0.162213 seconds and 4 git commands to generate.