mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 16:46:35 +01:00
Remove some debug output.
git-svn-id: svn://localhost/ardour2/branches/3.0@12296 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
23f03f995f
commit
8bdd0304d7
1 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue