Skip to content

Commit

Permalink
epicsMessageQueueTest: Shorten the 1R4S tests
Browse files Browse the repository at this point in the history
  • Loading branch information
anjohnson committed Apr 16, 2020
1 parent a9727fd commit 841effe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/libCom/test/epicsMessageQueueTest.cpp
Expand Up @@ -332,7 +332,7 @@ extern "C" void messageQueueTest(void *parm)
* Single receiver, multiple sender tests
*/
testDiag("Single receiver, multiple sender tests:");
testDiag("This test lasts 60 seconds...");
testDiag("This test lasts 30 seconds...");
testOk(!!epicsThreadCreate("Sender 1", epicsThreadPriorityLow,
mediumStack, sender, q1),
"Created Sender 1");
Expand All @@ -346,9 +346,9 @@ extern "C" void messageQueueTest(void *parm)
mediumStack, sender, q1),
"Created Sender 4");

for (i = 0; i < 10; i++) {
testDiag("... %2d", 10 - i);
epicsThreadSleep(6.0);
for (i = 0; i < 6; i++) {
testDiag("... %2d", 6 - i);
epicsThreadSleep(5.0);
}

sendExit = 1;
Expand Down

0 comments on commit 841effe

Please sign in to comment.