X-Git-Url: http://git.harvie.cz/?a=blobdiff_plain;f=demos%2Fperformance%2Ftest-performance.sh;h=a31b74a7b6ced99b15064c9a81e936ff14ebd626;hb=72c9d7a0a7562f1d480c0c023bb15163a7b3f803;hp=45b5675ff75a0cfdf3aaca32e1422a3b5e363d81;hpb=cc0de701b6a1dd6d8c01352888c1be54676cd8e2;p=svn%2FCll1h%2F.git diff --git a/demos/performance/test-performance.sh b/demos/performance/test-performance.sh index 45b5675..a31b74a 100755 --- a/demos/performance/test-performance.sh +++ b/demos/performance/test-performance.sh @@ -1,39 +1,51 @@ #!/bin/sh +cat print.rb +echo "Running..." +time ./print.rb > /dev/null + cat print.py echo "Running..." time ./print.py > /dev/null -cat cout.cpp -echo "Compiling..." -time g++ -O4 cout.cpp -o cout +cat xrange.py echo "Running..." -time ./cout > /dev/null +time ./xrange.py > /dev/null + +cat echo.php +echo "Running..." +time ./echo.php > /dev/null cat print.pl echo "Running..." time ./print.pl > /dev/null +cat cout.cpp +echo "Compiling..." +time g++ -O2 cout.cpp -o cout +echo "Running..." +time ./cout > /dev/null + cat cll1-print.c echo "Compiling..." -time gcc -O4 cll1-print.c -o cll1-print +time gcc -O2 cll1-print.c -o cll1-print echo "Running..." time ./cll1-print > /dev/null cat printf.c echo "Compiling..." -time gcc -O4 printf.c -o printf +time gcc -O2 printf.c -o printf echo "Running..." time ./printf > /dev/null cat puts.c echo "Compiling..." -time gcc -O4 puts.c -o puts +time gcc -O2 puts.c -o puts echo "Running..." time ./puts > /dev/null cat fputs.c echo "Compiling..." -time gcc -O4 fputs.c -o fputs +time gcc -O2 fputs.c -o fputs echo "Running..." time ./fputs > /dev/null