Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 57F6318091 for ; Tue, 1 Dec 2015 00:04:04 +0000 (UTC) Received: (qmail 22612 invoked by uid 500); 1 Dec 2015 00:04:04 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 22575 invoked by uid 500); 1 Dec 2015 00:04:04 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 22565 invoked by uid 99); 1 Dec 2015 00:04:04 -0000 Received: from Unknown (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Dec 2015 00:04:04 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id C6AE4180A88 for ; Tue, 1 Dec 2015 00:04:03 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.447 X-Spam-Level: X-Spam-Status: No, score=0.447 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-0.554, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-west.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id JW5DDE_NcurL for ; Tue, 1 Dec 2015 00:03:56 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with ESMTP id 4222820C8F for ; Tue, 1 Dec 2015 00:03:56 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id D407DE02E7 for ; Tue, 1 Dec 2015 00:03:55 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id AC3813A0046 for ; Tue, 1 Dec 2015 00:03:55 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1717356 - /subversion/trunk/build/run_tests.py Date: Tue, 01 Dec 2015 00:03:55 -0000 To: commits@subversion.apache.org From: stefan2@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20151201000355.AC3813A0046@svn01-us-west.apache.org> Author: stefan2 Date: Tue Dec 1 00:03:55 2015 New Revision: 1717356 URL: http://svn.apache.org/viewvc?rev=1717356&view=rev Log: Fix the console test output in GLOBAL_SCHEDULER mode. * build/run_tests.py (TestHarness._run_global_sheduler): Make sure the "Tests to execute" line is shown before the first results come in. Modified: subversion/trunk/build/run_tests.py Modified: subversion/trunk/build/run_tests.py URL: http://svn.apache.org/viewvc/subversion/trunk/build/run_tests.py?rev=1717356&r1=1717355&r2=1717356&view=diff ============================================================================== --- subversion/trunk/build/run_tests.py (original) +++ subversion/trunk/build/run_tests.py Tue Dec 1 00:03:55 2015 @@ -461,6 +461,7 @@ class TestHarness: # Actually run the tests in concurrent sub-processes print('Tests to execute: %d' % total_count) + sys.stdout.flush() threads = [ TestHarness.TestSpawningThread(job_queue, self) for i in range(thread_count) ]