From: Adeel Kazmi Date: Fri, 3 Jul 2015 09:51:53 +0000 (+0100) Subject: Harmonize test failures X-Git-Tag: dali_1.0.48~14 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=commitdiff_plain;h=c961b698e56e881afe447b8cfb1a383b579a29ca Harmonize test failures Change-Id: I69142b8addadc415c7428594f73a146d41737777 --- diff --git a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-harness.cpp b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-harness.cpp index 24e3209..55beebc 100644 --- a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-harness.cpp +++ b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-harness.cpp @@ -58,6 +58,7 @@ int RunTestCase( struct ::testcase_s& testCase ) return result; } + int RunTestCaseInChildProcess( struct ::testcase_s& testCase, bool suppressOutput ) { int testResult = EXIT_STATUS_TESTCASE_FAILED; @@ -104,14 +105,14 @@ int RunTestCaseInChildProcess( struct ::testcase_s& testCase, bool suppressOutpu #ifdef WCOREDUMP if(WCOREDUMP(status)) { - printf("Test case %s crashed\n", testCase.name); + printf("Test case %s failed: due to a crash\n", testCase.name); } #endif - printf("Test case %s exited with signal %s\n", testCase.name, strsignal(WTERMSIG(status))); + printf("Test case %s failed: exit with signal %s\n", testCase.name, strsignal(WTERMSIG(status))); } else if(WIFSTOPPED(status)) { - printf("Test case %s stopped with signal %s\n", testCase.name, strsignal(WSTOPSIG(status))); + printf("Test case %s failed: stopped with signal %s\n", testCase.name, strsignal(WSTOPSIG(status))); } } return testResult;