remove body of no-longer-relevant tempo-related test
authorPaul Davis <paul@linuxaudiosystems.com>
Tue, 3 Jan 2012 17:36:40 +0000 (17:36 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Tue, 3 Jan 2012 17:36:40 +0000 (17:36 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@11143 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/test/bbt_test.cc

index 4dab5c6f32c77fad014c35b7bbae02d004a00afd..86dd38940969b1d429f2fe10a0b380919a07a120 100644 (file)
@@ -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