From bf3023c739e23e49ffc7f9197e288063b8efc508 Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Wed, 13 May 2015 13:23:15 -0700 Subject: [PATCH] Increase timeouts for loaded TeamCity runs --- src/FactSystem/FactSystemTestBase.cc | 2 +- src/VehicleSetup/SetupViewTest.cc | 2 +- src/qgcunittest/PX4RCCalibrationTest.cc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/FactSystem/FactSystemTestBase.cc b/src/FactSystem/FactSystemTestBase.cc index b0944b722..1035c81d1 100644 --- a/src/FactSystem/FactSystemTestBase.cc +++ b/src/FactSystem/FactSystemTestBase.cc @@ -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()); } diff --git a/src/VehicleSetup/SetupViewTest.cc b/src/VehicleSetup/SetupViewTest.cc index 7f6b2583f..b04605077 100644 --- a/src/VehicleSetup/SetupViewTest.cc +++ b/src/VehicleSetup/SetupViewTest.cc @@ -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()); diff --git a/src/qgcunittest/PX4RCCalibrationTest.cc b/src/qgcunittest/PX4RCCalibrationTest.cc index 966c586b6..350b1d904 100644 --- a/src/qgcunittest/PX4RCCalibrationTest.cc +++ b/src/qgcunittest/PX4RCCalibrationTest.cc @@ -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()); -- 2.22.0