Browse Source

Relax uORB test for Darwin CI system

sbg
Lorenz Meier 9 years ago
parent
commit
630cebeabc
  1. 4
      src/modules/uORB/uORB_tests/uORBTest_UnitTest.cpp

4
src/modules/uORB/uORB_tests/uORBTest_UnitTest.cpp

@ -480,8 +480,10 @@ int uORBTest::UnitTest::test_multi2() @@ -480,8 +480,10 @@ int uORBTest::UnitTest::test_multi2()
if (updated) {
struct orb_test_medium msg;
orb_copy(ORB_ID(orb_test_medium_multi), orb_data_cur_fd, &msg);
// Relax timing requirement for Darwin CI system
#ifdef __PX4_DARWIN
usleep(3000);
usleep(10000);
#else
usleep(1000);
#endif

Loading…
Cancel
Save