diff options
Diffstat (limited to 'voctocore')
-rwxr-xr-x | voctocore/perf.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/voctocore/perf.sh b/voctocore/perf.sh new file mode 100755 index 0000000..c0013bb --- /dev/null +++ b/voctocore/perf.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +./voctocore.py & +PID=$! +echo "PID=$PID" +sleep 1 +./scripts/set-composite-side-by-side-equal.sh >/dev/null 2>/dev/null +./scripts/av-source-eevblog.sh >/dev/null 2>/dev/null & +./scripts/av-source-avsync.sh >/dev/null 2>/dev/null & +sudo perf top -g -p $PID +kill $PID +wait |