Mercurial > hg > sonic-annotator
view tests/test-helpfulflags/test-helpfulflags.sh @ 123:b514bae9555e
Do not feed audio data to a plugin before its transform's start time (we might be feeding other transforms that started earlier). This breaks a test, but the test's expected output was broken (rather alarmingly)! Note that this does mean a plugin may have to-next-block "leakage" at start as well as end of its start-duration zone.
author | Chris Cannam |
---|---|
date | Wed, 08 Oct 2014 18:44:40 +0100 |
parents | 7a31201dc42d |
children | f0df07da6f46 |
line wrap: on
line source
#!/bin/bash . ../include.sh $r >/dev/null 2>&1 && \ fail "Return code 0 when run without args (should be a failure code)" $r 2>&1 >/dev/null | grep -q "for help" || \ fail "Improper response when run without args" $r --help 2>&1 | grep -q Copy || \ fail "Expected help not printed when run with --help" $r --list >/dev/null 2>&1 || \ fail "Fails to run with --list" $r --list 2>/dev/null | grep -q $percplug || \ fail "Fails to print $percplug in plugin list (if you haven't got it, install it -- it's needed for other tests)" $r --list 2>/dev/null | grep -q $testplug || \ fail "Fails to print $testplug in plugin list (if you haven't got it, install it -- it's needed for other tests)" $r --skeleton $percplug >/dev/null || \ fail "Fails to run with --skeleton $percplug" $r -s $percplug >/dev/null || \ fail "Fails to run with -s $percplug" $r --skeleton $percplug >/dev/null || \ fail "Fails to run with --skeleton $percplug" $r --skeleton $percplug | rapper -i turtle - test >/dev/null 2>&1 || \ fail "Invalid XML skeleton produced with --skeleton $percplug" exit 0