Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:75323 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 60521 invoked from network); 7 Jul 2014 16:48:36 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 7 Jul 2014 16:48:36 -0000 Authentication-Results: pb1.pair.com smtp.mail=php@golemon.com; spf=softfail; sender-id=softfail Authentication-Results: pb1.pair.com header.from=php@golemon.com; sender-id=softfail Received-SPF: softfail (pb1.pair.com: domain golemon.com does not designate 209.85.192.179 as permitted sender) X-PHP-List-Original-Sender: php@golemon.com X-Host-Fingerprint: 209.85.192.179 mail-pd0-f179.google.com Received: from [209.85.192.179] ([209.85.192.179:43357] helo=mail-pd0-f179.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 78/A2-44309-36FCAB35 for ; Mon, 07 Jul 2014 12:48:35 -0400 Received: by mail-pd0-f179.google.com with SMTP id w10so5662128pde.10 for ; Mon, 07 Jul 2014 09:48:32 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=wg09pYqTaWrrlRd51ZFozW6kcDTbU2li9MsgYX8fVUc=; b=QEyeAFSL3uD7Lvhbe1XbwAVFk/BhQ6fORkJEm02Clp6Yp4UZmr2dGaYPmyGDDNfVTF 4sOAAvO7ayyRRHHMGbvyDuaoIPw42DJ2ZNDXl3TrYOrnFPzQqRCGBuQDmo6EIvVH33ah PO8XeHZagyL9gKh5r9U6csCwKNO4AL+TDiOUCc3NaUOxIq3gC1wngt1NwI/XLm8tTRL7 HwY0WJspSaaQ90jmkVrD8pHoHKCRSkQYh3i4xJ0H8hi416bpqSM6bT7yNEL/QOtzmxea inA5R4nPb1JaDvxE6DjwqsU/UqkN24HppW2ZIhv/kX8qPRtCNRPGc8QFySWbVkEAlSOA Yf/A== X-Gm-Message-State: ALoCoQn2AfpL5fkkkVcECjOKx1cK5H31ncBEFwKQi5C8nG9IFRYJu9Y0n34IuLWGDPJQVYP9uBjE MIME-Version: 1.0 X-Received: by 10.70.0.76 with SMTP id 12mr29312213pdc.44.1404751712737; Mon, 07 Jul 2014 09:48:32 -0700 (PDT) Sender: php@golemon.com Received: by 10.70.21.35 with HTTP; Mon, 7 Jul 2014 09:48:32 -0700 (PDT) X-Originating-IP: [71.198.113.183] In-Reply-To: References: Date: Mon, 7 Jul 2014 09:48:32 -0700 X-Google-Sender-Auth: vohdXmupPjT5KcC46AVPH_2__KU Message-ID: To: Michael Wallner Cc: PHP Internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] Concurrency support for run-tests From: pollita@php.net (Sara Golemon) On Mon, Jul 7, 2014 at 6:53 AM, Michael Wallner wrote: > I also have a patch for run-tests sitting around for quite some time, which > adds concurrent test execution support. I already fixed a lot of non > re-entrant tests in the past, but there might still be quite some of them. > HHVM uses PHP's test suite and runs them in parallel. We upstreamed a number of fixes for tests to make these behave properly (many tests used common, generic filenames like "test.txt" which would clobber over each other when run concurrently). Would love to see PHP eat up a few more cores too. -Sara