From: Adeel Kazmi Date: Fri, 3 Jul 2015 09:51:53 +0000 (+0100) Subject: Harmonize test failures X-Git-Tag: dali_1.0.48~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5f37e5a21d2cb53540d6023950b0c073b016e8ca;p=platform%2Fcore%2Fuifw%2Fdali-core.git Harmonize test failures Change-Id: Ibed413b277af32ad4b30426fcec317aed93d3895 --- diff --git a/automated-tests/src/dali/dali-test-suite-utils/test-harness.cpp b/automated-tests/src/dali/dali-test-suite-utils/test-harness.cpp index 475b62a..55beebc 100644 --- a/automated-tests/src/dali/dali-test-suite-utils/test-harness.cpp +++ b/automated-tests/src/dali/dali-test-suite-utils/test-harness.cpp @@ -105,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;