ruby performance test added
[svn/Cll1h/.git] / demos / performance / test-performance2.sh
... / ...
CommitLineData
1#!/bin/sh
2
3cat print2.py
4echo "Running..."
5time ./print2.py > /dev/null
6
7cat print2.rb
8echo "Running..."
9time ./print2.rb > /dev/null
10
11cat cout2.cpp
12echo "Compiling..."
13time g++ -O4 cout2.cpp -o cout2
14echo "Running..."
15time ./cout2 > /dev/null
16
17cat print2.pl
18echo "Running..."
19time ./print2.pl > /dev/null
20
21cat cll1-print2.c
22echo "Compiling..."
23time gcc -O4 cll1-print2.c -o cll1-print2
24echo "Running..."
25time ./cll1-print2 > /dev/null
26
27cat printf2.c
28echo "Compiling..."
29time gcc -O4 printf2.c -o printf2
30echo "Running..."
31time ./printf2 > /dev/null
32
33cat fputs2.c
34echo "Compiling..."
35time gcc -O4 fputs2.c -o fputs2
36echo "Running..."
37time ./fputs2 > /dev/null
This page took 0.123091 seconds and 4 git commands to generate.