diff --git a/testing/time_notifications b/testing/time_notifications new file mode 100755 index 00000000..cc8ad7e7 --- /dev/null +++ b/testing/time_notifications @@ -0,0 +1,15 @@ +#!/bin/bash + +RUNS=10 + +loop() { + for j in $(seq 1 $RUNS); do + ./bin/$1 >/dev/null + done +} + +TIMEFORMAT="%R" +for i in $(ls bin); do + echo -n "$i " + time loop $i +done