From 8bdd0304d70acae8715e80d373fbcebb85d8f5a0 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 15 May 2012 19:31:13 +0000 Subject: [PATCH] Remove some debug output. git-svn-id: svn://localhost/ardour2/branches/3.0@12296 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/test/control_surfaces_test.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/ardour/test/control_surfaces_test.cc b/libs/ardour/test/control_surfaces_test.cc index 82127a2524..2ef0014ae5 100644 --- a/libs/ardour/test/control_surfaces_test.cc +++ b/libs/ardour/test/control_surfaces_test.cc @@ -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::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); }