diff options
author | MaZderMind <git@mazdermind.de> | 2015-05-20 10:57:01 +0200 |
---|---|---|
committer | MaZderMind <git@mazdermind.de> | 2015-05-20 10:57:01 +0200 |
commit | 7f281ac2be37ef04c331ac9d91a075f29ea57d7b (patch) | |
tree | b63583b8effd592d24f994654b4cd5747573d230 /voctocore/scripts/benchmark.sh | |
parent | 464cd45530a03cce98594a3f5867fa7972bec787 (diff) |
move perf & benchmark scripts into scripts-dir
Diffstat (limited to 'voctocore/scripts/benchmark.sh')
-rwxr-xr-x | voctocore/scripts/benchmark.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/voctocore/scripts/benchmark.sh b/voctocore/scripts/benchmark.sh new file mode 100755 index 0000000..7b3a72b --- /dev/null +++ b/voctocore/scripts/benchmark.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +../voctocore.py & +PID=$! +echo "PID=$PID" +sleep 1 +./set-composite-side-by-side-equal.sh >/dev/null 2>/dev/null +./av-source-eevblog.sh >/dev/null 2>/dev/null & +./av-source-avsync.sh >/dev/null 2>/dev/null & +pidstat -p $PID 1 & +sleep 10 +kill $PID +wait |