adding some testing scripts

Signed-off-by: Dustin Kirkland <kirkland@canonical.com>
This commit is contained in:
Dustin Kirkland 2009-06-16 18:12:19 -05:00
commit 8447768299

15
testing/time_notifications Executable file
View file

@ -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