performance tests updated with .cpp code
[svn/Cll1h/.git] / demos / performance / test-performance.sh
diff --git a/demos/performance/test-performance.sh b/demos/performance/test-performance.sh
new file mode 100755 (executable)
index 0000000..9bc731b
--- /dev/null
@@ -0,0 +1,39 @@
+#!/bin/sh
+
+cat print.py
+echo "Running..."
+time ./print.py > /dev/null
+
+cat cout.cpp
+echo "Compiling..."
+time make cout
+echo "Running..."
+time ./cout > /dev/null
+
+cat print.pl
+echo "Running..."
+time ./print.pl > /dev/null
+
+cat cll1-print.c
+echo "Compiling..."
+time make cll1-print
+echo "Running..."
+time ./cll1-print > /dev/null
+
+cat printf.c
+echo "Compiling..."
+time make printf
+echo "Running..."
+time ./printf > /dev/null
+
+cat puts.c
+echo "Compiling..."
+time make puts
+echo "Running..."
+time ./puts > /dev/null
+
+cat fputs.c
+echo "Compiling..."
+time make fputs
+echo "Running..."
+time ./fputs > /dev/null
This page took 0.099461 seconds and 4 git commands to generate.