From c961b698e56e881afe447b8cfb1a383b579a29ca Mon Sep 17 00:00:00 2001 From: Adeel Kazmi Date: Fri, 3 Jul 2015 10:51:53 +0100 Subject: [PATCH] Harmonize test failures Change-Id: I69142b8addadc415c7428594f73a146d41737777 --- .../src/dali-toolkit/dali-toolkit-test-utils/test-harness.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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; -- 2.7.4