aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaZderMind <git@mazdermind.de>2015-05-20 10:57:01 +0200
committerMaZderMind <git@mazdermind.de>2015-05-20 10:57:01 +0200
commit7f281ac2be37ef04c331ac9d91a075f29ea57d7b (patch)
treeb63583b8effd592d24f994654b4cd5747573d230
parent464cd45530a03cce98594a3f5867fa7972bec787 (diff)
move perf & benchmark scripts into scripts-dir
-rwxr-xr-xvoctocore/benchmark.sh13
-rwxr-xr-xvoctocore/perf.sh12
-rwxr-xr-xvoctocore/scripts/benchmark.sh13
-rwxr-xr-xvoctocore/scripts/perf.sh12
4 files changed, 25 insertions, 25 deletions
diff --git a/voctocore/benchmark.sh b/voctocore/benchmark.sh
deleted file mode 100755
index 58b1b71..0000000
--- a/voctocore/benchmark.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/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 &
-pidstat -p $PID 1 &
-sleep 10
-kill $PID
-wait
diff --git a/voctocore/perf.sh b/voctocore/perf.sh
deleted file mode 100755
index c0013bb..0000000
--- a/voctocore/perf.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/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
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
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