stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=576570ce27531855b186b11267340d7032a96565

commit 576570ce27531855b186b11267340d7032a96565
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Mon Apr 16 11:46:01 2018 +0200

    tests: flush stdout after printing test suite timing info
    
    Summary:
    avoid repeating lines
    
    Depends on D5937
    
    Reviewers: stefan_schmidt
    
    Subscribers: cedric
    
    Differential Revision: https://phab.enlightenment.org/D5917
---
 src/tests/efl_check.h | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/tests/efl_check.h b/src/tests/efl_check.h
index faa185b7c0..4a1944f943 100644
--- a/src/tests/efl_check.h
+++ b/src/tests/efl_check.h
@@ -320,7 +320,10 @@ _efl_suite_build_and_run(int argc, const char **argv, 
const char *suite_name, co
 
 #ifdef ENABLE_TIMING_INFO
    if (timing)
-     printf("SUITE TIME %s: %.5g\n", suite_name, _timing_time_get() - tstart);
+     {
+        printf("SUITE TIME(%u) %s: %.5g\n", getpid(), suite_name, 
_timing_time_get() - tstart);
+        fflush(stdout);
+     }
 #endif
    return failed_count;
 }

-- 


Reply via email to