aboutsummaryrefslogtreecommitdiff
path: root/test/004-two-tracks.test/run.sh
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2016-03-15 23:01:39 +1300
committerDavid Phillips <dbphillipsnz@gmail.com>2016-03-15 23:01:39 +1300
commitccf29e81fb1098d296e525d0d735d3e84cf44bed (patch)
treed996a7d5a21931dffd7ba50bcd31e2b4c90e679c /test/004-two-tracks.test/run.sh
parent259e64c31f72bf54a7f54544c10472107e8c752c (diff)
downloadcue-bin-split-more-tests.tar.xz
Rename test to something that actually describes what it testsmore-tests
Diffstat (limited to 'test/004-two-tracks.test/run.sh')
-rw-r--r--test/004-two-tracks.test/run.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/004-two-tracks.test/run.sh b/test/004-two-tracks.test/run.sh
deleted file mode 100644
index 7bb987c..0000000
--- a/test/004-two-tracks.test/run.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-# create large file
-echo 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ > raw
-
-echo -e '0:0:0\n0:1:0\n0:4:0\n0:10:0' | ${EXECUTABLE} -r 1 -c 1 -s 1 -i raw -f track_%d.raw
-
-
-for track in track_{1..4}.raw ; do
- diff $track $track.expected >/dev/null
- if [ $? -eq 0 ] ; then
- rm $track
- else
- exit 1
- fi
-done
-
-rm raw