Remove some debug output.

git-svn-id: svn://localhost/ardour2/branches/3.0@12296 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2012-05-15 19:31:13 +00:00
parent 23f03f995f
commit 8bdd0304d7

View file

@ -7,16 +7,16 @@ CPPUNIT_TEST_SUITE_REGISTRATION (ControlSurfacesTest);
using namespace std;
using namespace ARDOUR;
/** Instantiate and then immediately tear down all our control surfaces.
* This is to check that there are no crashes when doing this ...
*/
void
ControlSurfacesTest::instantiateAndTeardownTest ()
{
cout << "HELLO!\n";
_session->new_audio_track (1, 2, Normal, 0, 1, "Test");
ControlProtocolManager& m = ControlProtocolManager::instance ();
cout << "CST: Test " << m.control_protocol_info.size() << "\n";
for (list<ControlProtocolInfo*>::iterator i = m.control_protocol_info.begin(); i != m.control_protocol_info.end(); ++i) {
cout << "CST: Test " << (*i)->name << "\n";
m.instantiate (**i);
m.teardown (**i);
}