From patchwork Wed Jul 24 23:50:20 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: DJ Delorie X-Patchwork-Id: 33792 Received: (qmail 66081 invoked by alias); 24 Jul 2019 23:50:27 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 65952 invoked by uid 89); 24 Jul 2019 23:50:26 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-17.5 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS autolearn=ham version=3.3.1 spammy= X-HELO: mx1.redhat.com From: DJ Delorie To: Tulio Magno Quites Machado Filho Cc: stli@linux.ibm.com, libc-alpha@sourceware.org Subject: Re: [PATCH] test-container: Install with $(all-subdirs) [BZ #24794] In-Reply-To: <87k1c7zbw2.fsf@linux.ibm.com> (message from Tulio Magno Quites Machado Filho on Wed, 24 Jul 2019 12:32:29 -0300) Date: Wed, 24 Jul 2019 19:50:20 -0400 Message-ID: MIME-Version: 1.0 Tulio Magno Quites Machado Filho writes: > I'll take a look and see what's missing. How about this? The initial setting of subdirs is from Makeconfig: subdirs = $(sorted-subdirs) With this change, tst-nss-files-hosts-long passes, where it failed before with a clean testroot install. diff --git a/Makefile b/Makefile index 9fbf705200..ac1125853b 100644 --- a/Makefile +++ b/Makefile @@ -402,7 +402,7 @@ ifeq ($(run-built-tests),yes) done endif $(MAKE) install DESTDIR=$(objpfx)testroot.pristine \ - subdirs='$(all-subdirs)' + subdirs='$(sorted-subdirs)' touch $(objpfx)testroot.pristine/install.stamp tests-special-notdir = $(patsubst $(objpfx)%, %, $(tests-special))