skip Push2 unit-test for now:

The test segfaults due to missing screen and prevents other libardour
unit tests from running.
This commit is contained in:
Robin Gareus 2016-10-11 00:05:08 +02:00
parent 688eb2883f
commit b997232aad

View File

@ -35,6 +35,14 @@ ControlSurfacesTest::instantiateAndTeardownTest ()
ControlProtocolManager& m = ControlProtocolManager::instance ();
for (list<ControlProtocolInfo*>::iterator i = m.control_protocol_info.begin(); i != m.control_protocol_info.end(); ++i) {
#if 1
/* Push2 needs libcanvas -- which needs pango, which needs a screen
* IA__gdk_pango_context_get_for_screen: assertion 'GDK_IS_SCREEN (screen)' failed
*/
if ((*i)->name == "Ableton Push 2") {
continue;
}
#endif
m.activate (**i);
m.deactivate (**i);
}