From de4a18d1aa51ef1a06b23dd650542d13ce4b92b4 Mon Sep 17 00:00:00 2001 From: Richard Mudgett Date: Fri, 13 Dec 2013 20:17:22 +0000 Subject: test.c: Fix too sticky unit test failed status. Rerunning a failed unit test after loading any required modules should allow the test to report a pass status if it now passes. ........ Merged revisions 403782 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@403784 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/test.c | 1 + 1 file changed, 1 insertion(+) (limited to 'main') diff --git a/main/test.c b/main/test.c index 94713e0e7..170bba658 100644 --- a/main/test.c +++ b/main/test.c @@ -250,6 +250,7 @@ static void test_execute(struct ast_test *test) test->state = AST_TEST_FAIL; goto exit; } + test->state = AST_TEST_NOT_RUN; result = test->cb(&test->info, TEST_EXECUTE, test); if (test->state != AST_TEST_FAIL) { test->state = result; -- cgit v1.2.3