Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Added timeout for dummycase3 in libtestdummy.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkauppila committed Jul 14, 2011
1 parent 2f7cbd6 commit bd7fa44
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/test-automation/testdummy/testdummy.c
Expand Up @@ -38,7 +38,7 @@ static const TestCaseReference test2 =
(TestCaseReference){ "dummycase2", "description", TEST_ENABLED, 0, 0};

static const TestCaseReference test3 =
(TestCaseReference){ "dummycase3", "description", TEST_ENABLED, 0, 0};
(TestCaseReference){ "dummycase3", "description", TEST_ENABLED, 0, 2};

/* Test suite */
extern const TestCaseReference *testSuite[] = {
Expand Down Expand Up @@ -102,6 +102,7 @@ dummycase2(void *arg)
void
dummycase3(void *arg)
{
AssertTrue(1, "Assert message");
while(1);
//AssertTrue(1, "Assert message");
}

0 comments on commit bd7fa44

Please sign in to comment.