From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2191) id D7D363858CDB; Thu, 18 May 2023 16:51:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D7D363858CDB DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1684428717; bh=xrxpisL5zPXCQci7RfOPgvfjj2Ty4b8v10F34FguvU8=; h=From:To:Subject:Date:From; b=Y+OWijUTvFVFccqkJdS43X6FvBN5+l7jjb7a5PTNqYSOvCMEciX+Ap4NU2nZINong 0a3mxkMguBS3xrnBu7ZeG4Y5+tf4fvtcNrWC0AVmWdVHAo1gCoG3gu7OeINTzOLNeY 92C6Bj5fBqU4TNz72NcZu3+YXDCPR0C1wbkpv2xs= 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] stdio-common: Adjust tests in Makefile X-Act-Checkin: glibc X-Git-Author: Carlos O'Donell X-Git-Refname: refs/heads/master X-Git-Oldrev: a08e854d0058ba3a9a8eccc545dd4c3885cc640e X-Git-Newrev: b9125aeaed45e10ce329f91f007eb3da43d2155f Message-Id: <20230518165157.D7D363858CDB@sourceware.org> Date: Thu, 18 May 2023 16:51:57 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=b9125aeaed45e10ce329f91f007eb3da43d2155f commit b9125aeaed45e10ce329f91f007eb3da43d2155f Author: Carlos O'Donell Date: Wed May 17 09:33:05 2023 -0400 stdio-common: Adjust tests in Makefile Sort tests against updated scripts/sort-makefile-lines.py. No changes in generated code. No regressions on x86_64 and i686. Reviewed-by: Siddhesh Poyarekar Diff: --- stdio-common/Makefile | 44 +++++++++++++++++----------------- stdio-common/{bug23-2.c => bug27.c} | 0 stdio-common/{bug23-3.c => bug28.c} | 0 stdio-common/{bug23-4.c => bug29.c} | 0 stdio-common/{scanf14a.c => scanf18.c} | 0 stdio-common/{scanf16a.c => scanf19.c} | 0 6 files changed, 22 insertions(+), 22 deletions(-) diff --git a/stdio-common/Makefile b/stdio-common/Makefile index 1b4997afc8..4c15b97683 100644 --- a/stdio-common/Makefile +++ b/stdio-common/Makefile @@ -130,6 +130,13 @@ aux := \ tests := \ bug-vfprintf-nargs \ bug1 \ + bug3 \ + bug4 \ + bug5 \ + bug6 \ + bug7 \ + bug8 \ + bug9 \ bug10 \ bug11 \ bug12 \ @@ -146,38 +153,31 @@ tests := \ bug21 \ bug22 \ bug23 \ - bug23-2 \ - bug23-3 \ - bug23-4 \ bug24 \ bug25 \ bug26 \ - bug3 \ - bug4 \ - bug5 \ - bug6 \ - bug7 \ - bug8 \ - bug9 \ + bug27 \ + bug28 \ + bug29 \ errnobug \ scanf1 \ + scanf2 \ + scanf3 \ + scanf4 \ + scanf5 \ + scanf7 \ + scanf8 \ + scanf9 \ scanf10 \ scanf11 \ scanf12 \ scanf13 \ scanf14 \ - scanf14a \ scanf15 \ scanf16 \ - scanf16a \ scanf17 \ - scanf2 \ - scanf3 \ - scanf4 \ - scanf5 \ - scanf7 \ - scanf8 \ - scanf9 \ + scanf18 \ + scanf19 \ temptest \ test-fseek \ test-fwrite \ @@ -442,11 +442,11 @@ CFLAGS-isoc23_scanf.c += -fexceptions CFLAGS-dprintf.c += $(config-cflags-wno-ignored-attributes) -# scanf14a.c and scanf16a.c test a deprecated extension which is no +# scanf18.c and scanf19.c test a deprecated extension which is no # longer visible under most conformance levels; see the source files # for more detail. -CFLAGS-scanf14a.c += -std=gnu89 -CFLAGS-scanf16a.c += -std=gnu89 +CFLAGS-scanf18.c += -std=gnu89 +CFLAGS-scanf19.c += -std=gnu89 CFLAGS-bug3.c += -DOBJPFX=\"$(objpfx)\" CFLAGS-bug4.c += -DOBJPFX=\"$(objpfx)\" diff --git a/stdio-common/bug23-2.c b/stdio-common/bug27.c similarity index 100% rename from stdio-common/bug23-2.c rename to stdio-common/bug27.c diff --git a/stdio-common/bug23-3.c b/stdio-common/bug28.c similarity index 100% rename from stdio-common/bug23-3.c rename to stdio-common/bug28.c diff --git a/stdio-common/bug23-4.c b/stdio-common/bug29.c similarity index 100% rename from stdio-common/bug23-4.c rename to stdio-common/bug29.c diff --git a/stdio-common/scanf14a.c b/stdio-common/scanf18.c similarity index 100% rename from stdio-common/scanf14a.c rename to stdio-common/scanf18.c diff --git a/stdio-common/scanf16a.c b/stdio-common/scanf19.c similarity index 100% rename from stdio-common/scanf16a.c rename to stdio-common/scanf19.c