Harmonize test failures 71/42871/1
authorAdeel Kazmi <adeel.kazmi@samsung.com>
Fri, 3 Jul 2015 09:51:53 +0000 (10:51 +0100)
committerAdeel Kazmi <adeel.kazmi@samsung.com>
Fri, 3 Jul 2015 09:51:53 +0000 (10:51 +0100)
Change-Id: Ibed413b277af32ad4b30426fcec317aed93d3895

automated-tests/src/dali/dali-test-suite-utils/test-harness.cpp

index 475b62a..55beebc 100644 (file)
@@ -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;