From 5f37e5a21d2cb53540d6023950b0c073b016e8ca 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: Ibed413b277af32ad4b30426fcec317aed93d3895 --- automated-tests/src/dali/dali-test-suite-utils/test-harness.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.7.4