From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 115199 invoked by alias); 3 Nov 2016 22:48:19 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 115059 invoked by uid 89); 3 Nov 2016 22:48:04 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS,URIBL_RED autolearn=ham version=3.3.2 spammy=2296, 2297, std_hdr, UD:linknamespace.pl X-HELO: relay1.mentorg.com Date: Thu, 03 Nov 2016 22:48:00 -0000 From: Joseph Myers To: Subject: Fix linknamespace parallel test failures [committed] Message-ID: User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" X-ClientProxiedBy: svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) To svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) X-SW-Source: 2016-11/txt/msg00126.txt.bz2 Having found that with my script to build many glibc variants I could reproduce the linknamespace test failures in parallel builds (that various people had previously reported but I hadn't seen myself), I investigated those failures further. This patch adds a missing dependency to those tests. Tested for x86_64, including the configuration where I saw those failures and where I don't see them with this patch. Committed. 2016-11-03 Joseph Myers * conform/Makefile ($(linknamespace-header-tests)): Also depend on $(linknamespace-symlists-tests). diff --git a/conform/Makefile b/conform/Makefile index b92a7d4..7883624 100644 --- a/conform/Makefile +++ b/conform/Makefile @@ -229,6 +229,7 @@ $(linknamespace-symlist-stdlibs-tests): $(objpfx)symlist-stdlibs-%: \ $(linknamespace-header-tests): $(objpfx)%/linknamespace.out: \ linknamespace.pl \ + $(linknamespace-symlists-tests) \ $(linknamespace-symlist-stdlibs-tests) (set -e; std_hdr=$*; std=$${std_hdr%%/*}; hdr=$${std_hdr#*/}; \ mkdir -p $(@D)/scratch; \ -- Joseph S. Myers joseph@codesourcery.com