performance tests updated with .cpp code
[svn/Cll1h/.git] / demos / performance / test-performance2.sh
diff --git a/demos/performance/test-performance2.sh b/demos/performance/test-performance2.sh
new file mode 100755 (executable)
index 0000000..d354826
--- /dev/null
@@ -0,0 +1,33 @@
+#!/bin/sh
+
+cat print2.py
+echo "Running..."
+time ./print2.py > /dev/null
+
+cat cout2.cpp
+echo "Compiling..."
+time make cout2
+echo "Running..."
+time ./cout2 > /dev/null
+
+cat print2.pl
+echo "Running..."
+time ./print2.pl > /dev/null
+
+cat cll1-print2.c
+echo "Compiling..."
+time make cll1-print2
+echo "Running..."
+time ./cll1-print2 > /dev/null
+
+cat printf2.c
+echo "Compiling..."
+time make printf2
+echo "Running..."
+time ./printf2 > /dev/null
+
+cat fputs2.c
+echo "Compiling..."
+time make fputs2
+echo "Running..."
+time ./fputs2 > /dev/null
This page took 0.090271 seconds and 4 git commands to generate.