summaryrefslogtreecommitdiff
path: root/libs/ardour/test/control_surfaces_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-05-15 19:31:13 +0000
committerCarl Hetherington <carl@carlh.net>2012-05-15 19:31:13 +0000
commit8bdd0304d70acae8715e80d373fbcebb85d8f5a0 (patch)
treedaf128012cfb4af6e3626b05012c90a9d1d1a037 /libs/ardour/test/control_surfaces_test.cc
parent23f03f995f850898c1e8d133db318a210774bcd7 (diff)
Remove some debug output.
git-svn-id: svn://localhost/ardour2/branches/3.0@12296 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/test/control_surfaces_test.cc')
-rw-r--r--libs/ardour/test/control_surfaces_test.cc6
1 files 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<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);
}