Skip to content
Snippets Groups Projects
Commit c06d51d0 authored by Mark Charlebois's avatar Mark Charlebois Committed by Julian Oes
Browse files

More bad merge fixes

parent 7860c959
No related branches found
No related tags found
No related merge requests found
......@@ -321,12 +321,16 @@ int VCDevExample::main()
(char *const *)NULL);
ret = 0;
PX4_INFO("TEST: BLOCKING POLL ---------------");
if (do_poll(fd, -1, 3, 0)) {
ret = 1;
goto fail2;
}
PX4_INFO("TEST: ZERO TIMEOUT POLL -----------");
if(do_poll(fd, 0, 3, 0)) {
ret = 1;
goto fail2;
......@@ -352,6 +356,7 @@ int VCDevExample::main()
if (do_poll(fd, 1000, 3, 0)) {
ret = 1;
goto fail2;
}
PX4_INFO("TEST: waiting for writer to stop");
fail2:
g_exit = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment