fix up part of the remaining details with automation, so that touch/write over-writes work correctly

git-svn-id: svn://localhost/ardour2/branches/3.0@13041 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-07-14 15:42:10 +00:00
parent 34c6e03ecf
commit c3ccff8d05
6 changed files with 27 additions and 40 deletions

View file

@ -109,9 +109,9 @@ SequenceTest::controlInterpolationTest ()
MIDI::controller_range(min, max, normal);
// Make a ramp like /\ from min to max and back to min
c->set_double(min, true, 0);
c->set_double(max, true, delay);
c->set_double(min, true, 2*delay);
c->set_double(min, 0, true);
c->set_double(max, delay, true);
c->set_double(min, 2*delay, true);
CCTestSink<Time> sink(cc_type);