Commit bf3023c7 authored by Don Gagne's avatar Don Gagne

Increase timeouts for loaded TeamCity runs

parent c4346b19
...@@ -71,7 +71,7 @@ void FactSystemTestBase::_init(MAV_AUTOPILOT autopilot) ...@@ -71,7 +71,7 @@ void FactSystemTestBase::_init(MAV_AUTOPILOT autopilot)
QSignalSpy spyPlugin(_plugin, SIGNAL(pluginReadyChanged(bool))); QSignalSpy spyPlugin(_plugin, SIGNAL(pluginReadyChanged(bool)));
if (!_plugin->pluginReady()) { if (!_plugin->pluginReady()) {
QCOMPARE(spyPlugin.wait(10000), true); QCOMPARE(spyPlugin.wait(60000), true);
} }
Q_ASSERT(_plugin->pluginReady()); Q_ASSERT(_plugin->pluginReady());
} }
......
...@@ -76,7 +76,7 @@ void SetupViewTest::_clickThrough_test(void) ...@@ -76,7 +76,7 @@ void SetupViewTest::_clickThrough_test(void)
QSignalSpy spyPlugin(autopilot, SIGNAL(pluginReadyChanged(bool))); QSignalSpy spyPlugin(autopilot, SIGNAL(pluginReadyChanged(bool)));
if (!autopilot->pluginReady()) { if (!autopilot->pluginReady()) {
QCOMPARE(spyPlugin.wait(10000), true); QCOMPARE(spyPlugin.wait(60000), true);
} }
Q_ASSERT(autopilot->pluginReady()); Q_ASSERT(autopilot->pluginReady());
......
...@@ -156,7 +156,7 @@ void PX4RCCalibrationTest::init(void) ...@@ -156,7 +156,7 @@ void PX4RCCalibrationTest::init(void)
QSignalSpy spyPlugin(_autopilot, SIGNAL(pluginReadyChanged(bool))); QSignalSpy spyPlugin(_autopilot, SIGNAL(pluginReadyChanged(bool)));
if (!_autopilot->pluginReady()) { if (!_autopilot->pluginReady()) {
QCOMPARE(spyPlugin.wait(10000), true); QCOMPARE(spyPlugin.wait(60000), true);
} }
Q_ASSERT(_autopilot->pluginReady()); Q_ASSERT(_autopilot->pluginReady());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment