Browse Source

Increase timeouts for loaded TeamCity runs

QGC4.4
Don Gagne 10 years ago
parent
commit
bf3023c739
  1. 2
      src/FactSystem/FactSystemTestBase.cc
  2. 2
      src/VehicleSetup/SetupViewTest.cc
  3. 2
      src/qgcunittest/PX4RCCalibrationTest.cc

2
src/FactSystem/FactSystemTestBase.cc

@ -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)));
if (!_plugin->pluginReady()) {
QCOMPARE(spyPlugin.wait(10000), true);
QCOMPARE(spyPlugin.wait(60000), true);
}
Q_ASSERT(_plugin->pluginReady());
}

2
src/VehicleSetup/SetupViewTest.cc

@ -76,7 +76,7 @@ void SetupViewTest::_clickThrough_test(void) @@ -76,7 +76,7 @@ void SetupViewTest::_clickThrough_test(void)
QSignalSpy spyPlugin(autopilot, SIGNAL(pluginReadyChanged(bool)));
if (!autopilot->pluginReady()) {
QCOMPARE(spyPlugin.wait(10000), true);
QCOMPARE(spyPlugin.wait(60000), true);
}
Q_ASSERT(autopilot->pluginReady());

2
src/qgcunittest/PX4RCCalibrationTest.cc

@ -156,7 +156,7 @@ void PX4RCCalibrationTest::init(void) @@ -156,7 +156,7 @@ void PX4RCCalibrationTest::init(void)
QSignalSpy spyPlugin(_autopilot, SIGNAL(pluginReadyChanged(bool)));
if (!_autopilot->pluginReady()) {
QCOMPARE(spyPlugin.wait(10000), true);
QCOMPARE(spyPlugin.wait(60000), true);
}
Q_ASSERT(_autopilot->pluginReady());

Loading…
Cancel
Save