From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2191) id B8B8B3858427; Sun, 25 Feb 2024 18:42:58 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B8B8B3858427 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1708886578; bh=x1154gnmQky8E7cWT0NXv06TSkzOPM6QZZOOXIwC9QY=; h=From:To:Subject:Date:From; b=tIowUL8h06NmVbUZe34bthMrVJZa1xadtPccKFL8JRkg24ScGNVLP7L0JogN5CHZ2 AC0vMAQY/gAyNYYXFm6DWKw/mXAh8JGWvvYg9zZS6WNd7vEfo6WEFjczQV3Bh4aQs0 Kokkn44K9cYXsPV/0NefMYWxFa/EYmE4B4r28KDk= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Carlos O'Donell To: glibc-cvs@sourceware.org Subject: [glibc] htl/tests: Reformat Makefile. X-Act-Checkin: glibc X-Git-Author: Carlos O'Donell X-Git-Refname: refs/heads/master X-Git-Oldrev: d19d28853c03ce9b88159b747de9d2979c779f05 X-Git-Newrev: 5420d211f057d26d6d42724dd13c5b43fdd7a9a3 Message-Id: <20240225184258.B8B8B3858427@sourceware.org> Date: Sun, 25 Feb 2024 18:42:58 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=5420d211f057d26d6d42724dd13c5b43fdd7a9a3 commit 5420d211f057d26d6d42724dd13c5b43fdd7a9a3 Author: Carlos O'Donell Date: Fri Jun 9 17:45:23 2023 -0400 htl/tests: Reformat Makefile. Reflow and sort Makefile. No code generation changes in non-test binary artifacts. No regressions on x86_64 and i686. Tested with build-many-glibcs.py for x86_64-gnu. Diff: --- htl/tests/Makefile | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/htl/tests/Makefile b/htl/tests/Makefile index 7177ad181e..468adb58d5 100644 --- a/htl/tests/Makefile +++ b/htl/tests/Makefile @@ -7,9 +7,24 @@ CFLAGS=-Wall -g LDLIBS = -lpthread -CHECK_SRC := test-1.c test-2.c test-3.c test-6.c test-7.c test-8.c \ - test-9.c test-10.c test-11.c test-12.c test-13.c test-14.c \ - test-15.c test-16.c test-17.c test-__pthread_destroy_specific-skip.c +CHECK_SRC := \ + test-1.c \ + test-10.c \ + test-11.c \ + test-12.c \ + test-13.c \ + test-14.c \ + test-15.c \ + test-16.c \ + test-17.c \ + test-2.c \ + test-3.c \ + test-6.c \ + test-7.c \ + test-8.c \ + test-9.c \ + test-__pthread_destroy_specific-skip.c \ + # CHECK_SRC CHECK_OBJS := $(addsuffix .o,$(basename $(notdir $(CHECK_SRC)))) CHECK_PROGS := $(basename $(notdir $(CHECK_SRC))) \ @@ -37,4 +52,4 @@ check: $(CHECK_OBJS) $(CHECK_PROGS) clean: rm -f $(CHECK_OBJS) $(CHECK_PROGS) \ - $(addsuffix .out,$(basename $(notdir $(CHECK_PROGS)))) \ No newline at end of file + $(addsuffix .out,$(basename $(notdir $(CHECK_PROGS))))