summaryrefslogtreecommitdiff
path: root/libs/ardour/test/bbt_test.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-01-03 17:36:40 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-01-03 17:36:40 +0000
commitce5de59c77a48f10bc60130509db888da3cb2bed (patch)
tree435a7404bca4f8a8f83a5d35237ce59aad2a78d8 /libs/ardour/test/bbt_test.cc
parentd6ff0e35d8693be40808abd672ece60e4f651bf9 (diff)
remove body of no-longer-relevant tempo-related test
git-svn-id: svn://localhost/ardour2/branches/3.0@11143 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/test/bbt_test.cc')
-rw-r--r--libs/ardour/test/bbt_test.cc14
1 files changed, 2 insertions, 12 deletions
diff --git a/libs/ardour/test/bbt_test.cc b/libs/ardour/test/bbt_test.cc
index 4dab5c6f32..86dd389409 100644
--- a/libs/ardour/test/bbt_test.cc
+++ b/libs/ardour/test/bbt_test.cc
@@ -17,18 +17,8 @@ BBTTest::addTest ()
Meter meter(4.0, 4.0);
map.add_meter (meter, BBT_Time(1, 1, 0));
-
- // Test basic operations with a flat tempo map
- BBT_Time time = map.bbt_add(BBT_Time(1, 1, 0), BBT_Time(1, 2, 3));
- //cout << "result: BBT_Time(" << time.bars << ", " << time.beats << ", "
- // << time.ticks << ")" << endl;
- CPPUNIT_ASSERT(time == BBT_Time(2, 3, 3));
-
-
- time = map.bbt_add(BBT_Time(1, 2, 3), BBT_Time(2, 2, 3));
- //cerr << "result: BBT_Time(" << time.bars << ", " << time.beats << ", "
- // << time.ticks << ")" << endl;
- CPPUNIT_ASSERT(time == BBT_Time(3, 4, 6));
+
+ /* add some good stuff here */
}
void