diff options
Diffstat (limited to 'voctocore/scripts/perf.sh')
-rwxr-xr-x | voctocore/scripts/perf.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/voctocore/scripts/perf.sh b/voctocore/scripts/perf.sh new file mode 100755 index 0000000..035ec05 --- /dev/null +++ b/voctocore/scripts/perf.sh @@ -0,0 +1,12 @@ +#!/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 & +sudo perf top -g -p $PID +kill $PID +wait |