From patchwork Thu Apr 25 07:02:38 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Iain Buclaw X-Patchwork-Id: 1090616 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-499640-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=quarantine dis=none) header.from=gdcproject.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="rnGHg38A"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 44qSnN4BSkz9s55 for ; Thu, 25 Apr 2019 17:03:00 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:from:date:message-id:subject:to:content-type; q= dns; s=default; b=vduk2nXaAPmmM/OowQMu/Ftv3bu+IKJndi3vLsS9rblL6K eE6GTn+Um85CwO6/wxatdA5fk1MULW8LM17Z7c+VlIZKnm5/MAtsi5C5W5F51vLn ErCDg2SuBt/nHlzgIihzcqa5cz1CqqQS/Pt4hCW9A7PiE8bX9FCGWHvjMAmFc= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:from:date:message-id:subject:to:content-type; s= default; bh=7ErAU8BOvOH7QSBywmfMWEmdS0Q=; b=rnGHg38A6ic3SS8VvRT4 0pLTPDoFxJpU3kxAC+XsZbt7utBbJ7ZNzyqDJmVLrHvTxvWMc/MOPZ1fqVO7nS5E P+RWdkYHGOvw6BN59TROJMKmR7YwVEjwd5iq03w0jYL5Oi7qsDY2r+jWblYxxiLf pLFzYQtM8wiUOKDTurTMbzw= Received: (qmail 38355 invoked by alias); 25 Apr 2019 07:02:53 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 38239 invoked by uid 89); 25 Apr 2019 07:02:53 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-20.3 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy=HX-Received:Thu, 2, noticed X-HELO: mail-qt1-f174.google.com Received: from mail-qt1-f174.google.com (HELO mail-qt1-f174.google.com) (209.85.160.174) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 25 Apr 2019 07:02:51 +0000 Received: by mail-qt1-f174.google.com with SMTP id b3so254293qtc.12 for ; Thu, 25 Apr 2019 00:02:51 -0700 (PDT) MIME-Version: 1.0 From: Iain Buclaw Date: Thu, 25 Apr 2019 09:02:38 +0200 Message-ID: Subject: [PATCH, libphobos] Committed add missing PWD_COMMAND to Makefile. To: gcc-patches X-IsSubscribed: yes Hi, This patch adds PWD_COMMAND to libphobos/testsuite/Makefile.am, which is used by the parallelized testing machinery. Noticed by some errors when compiling from a newly set-up build server. touch: cannot touch '/libphobos-parallel/finished': No such file or directory make[3]: *** [check-DEJAGNUlibphobos7] Error 1 make[3]: Leaving directory `/home/runner/gcc/build/x86_64-linux-gnu/libphobos/testsuite' mv: cannot stat 'libphobos9/libphobos.sum': No such file or directory mv: cannot stat 'libphobos9/libphobos.log': No such file or directory mv: cannot stat 'libphobos10/libphobos.sum': No such file or directory mv: cannot stat 'libphobos10/libphobos.log': No such file or directory Committed to trunk as r270566. diff --git a/libphobos/testsuite/Makefile.am b/libphobos/testsuite/Makefile.am index 55b2ba42640..70b105d4014 100644 --- a/libphobos/testsuite/Makefile.am +++ b/libphobos/testsuite/Makefile.am @@ -27,6 +27,8 @@ _RUNTEST = $(shell if test -f $(top_srcdir)/../dejagnu/runtest; then \ echo $(top_srcdir)/../dejagnu/runtest; else echo runtest; fi) RUNTESTDEFAULTFLAGS = --tool $$tool --srcdir $$srcdir +PWD_COMMAND = $${PWDCMD-pwd} + check_p_subno=$(word 2,$(subst _, ,$*)) check_p_numbers0:=1 2 3 4 5 6 7 8 9 check_p_numbers1:=0 $(check_p_numbers0) diff --git a/libphobos/testsuite/Makefile.in b/libphobos/testsuite/Makefile.in index 26ed875d964..efbd884d7ae 100644 --- a/libphobos/testsuite/Makefile.in +++ b/libphobos/testsuite/Makefile.in @@ -289,6 +289,7 @@ _RUNTEST = $(shell if test -f $(top_srcdir)/../dejagnu/runtest; then \ echo $(top_srcdir)/../dejagnu/runtest; else echo runtest; fi) RUNTESTDEFAULTFLAGS = --tool $$tool --srcdir $$srcdir +PWD_COMMAND = $${PWDCMD-pwd} check_p_subno = $(word 2,$(subst _, ,$*)) check_p_numbers0 := 1 2 3 4 5 6 7 8 9 check_p_numbers1 := 0 $(check_p_numbers0)