From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id D1C783858C52 for ; Wed, 11 Oct 2023 16:53:51 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org D1C783858C52 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1697043231; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=zYM1efSPYM9l0okZgT/pKpgbcuRb8gr6VIt5X+k2z74=; b=MnHz0uvUSTBqMcfKlgGE2ENdrW0x2suidGri0skhVPL3bZ2tMJ2gpKhJDNc+KsayA8UckI FVWqKCbCxct567Csq1IjUhhKjgF0XkqWI6AseLBNl/xQ3y73LVYsOgRfPadqp65g0ugcfp ru65IL2aF6TqnuSW04zLll1T5ZInhpE= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-637-SE3arZ6INB-TuIE1dsewbg-1; Wed, 11 Oct 2023 12:53:50 -0400 X-MC-Unique: SE3arZ6INB-TuIE1dsewbg-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id E75D8805B3E for ; Wed, 11 Oct 2023 16:53:49 +0000 (UTC) Received: from oldenburg.str.redhat.com (unknown [10.2.16.9]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 7659410F1BE7 for ; Wed, 11 Oct 2023 16:53:49 +0000 (UTC) From: Florian Weimer To: gcc-patches@gcc.gnu.org Subject: [PATCH] C99 test suite conversation: Some unverified test case adjustments Date: Wed, 11 Oct 2023 18:53:48 +0200 Message-ID: <87zg0pt80z.fsf@oldenburg.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.3 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.3 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-Spam-Status: No, score=-10.6 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H4,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: These changes are assumed not to interfere with the test objective, but it was not possible to reproduce the historic test case failures (with or without the modification here). gcc/testsuite/ * gcc.c-torture/compile/20000105-1.c: Add missing int return type. Call __builtin_exit instead of exit. * gcc.c-torture/compile/20000105-2.c: Add missing void types. * gcc.c-torture/compile/20000211-1.c (Lstream_fputc, Lstream_write) (Lstream_flush_out, parse_doprnt_spec): Add missing function declaration. * gcc.c-torture/compile/20000224-1.c (call_critical_lisp_code): Declare. * gcc.c-torture/compile/20000314-2.c: Add missing void types. * gcc.c-torture/compile/20090917-1.c (foo): Likewise. * gcc.c-torture/compile/980816-1.c (XtVaCreateManagedWidget) (XtAddCallback): Likewise. * gcc.c-torture/compile/pr49474.c: Use struct gfc_formal_arglist * instead of (implied) int type. * gcc.c-torture/execute/20001111-1.c (foo): Add cast to char *. (main): Call __builtin_abort and __builtin_exit. --- gcc/testsuite/gcc.c-torture/compile/20000105-1.c | 5 +++-- gcc/testsuite/gcc.c-torture/compile/20000105-2.c | 3 ++- gcc/testsuite/gcc.c-torture/compile/20000211-1.c | 4 ++++ gcc/testsuite/gcc.c-torture/compile/20000224-1.c | 1 + gcc/testsuite/gcc.c-torture/compile/20000314-2.c | 3 ++- gcc/testsuite/gcc.c-torture/compile/980816-1.c | 2 ++ gcc/testsuite/gcc.c-torture/compile/pr49474.c | 3 ++- gcc/testsuite/gcc.c-torture/execute/20001111-1.c | 8 ++++---- 8 files changed, 20 insertions(+), 9 deletions(-) diff --git a/gcc/testsuite/gcc.c-torture/compile/20000105-1.c b/gcc/testsuite/gcc.c-torture/compile/20000105-1.c index 6f389d88b22..1917b2b6656 100644 --- a/gcc/testsuite/gcc.c-torture/compile/20000105-1.c +++ b/gcc/testsuite/gcc.c-torture/compile/20000105-1.c @@ -1,14 +1,15 @@ +int main(int na, char* argv[]) { int wflg = 0, tflg = 0; int dflg = 0; - exit(0); + __builtin_exit(0); while(1) { switch(argv[1][0]) { help: - exit(0); + __builtin_exit(0); case 'w': case 'W': wflg = 1; diff --git a/gcc/testsuite/gcc.c-torture/compile/20000105-2.c b/gcc/testsuite/gcc.c-torture/compile/20000105-2.c index 7689395f45d..74bee07144a 100644 --- a/gcc/testsuite/gcc.c-torture/compile/20000105-2.c +++ b/gcc/testsuite/gcc.c-torture/compile/20000105-2.c @@ -1,4 +1,5 @@ -foo () +void +foo (void) { long long int i = (int) ""; } diff --git a/gcc/testsuite/gcc.c-torture/compile/20000211-1.c b/gcc/testsuite/gcc.c-torture/compile/20000211-1.c index b83d6a40520..c6b6c245dc9 100644 --- a/gcc/testsuite/gcc.c-torture/compile/20000211-1.c +++ b/gcc/testsuite/gcc.c-torture/compile/20000211-1.c @@ -46,6 +46,10 @@ typedef struct typedef struct { } printf_arg_dynarr; +extern void Lstream_fputc (struct lstream *, int); +extern void Lstream_write (struct lstream *, const Bufbyte *, Bytecount); +extern void Lstream_flush_out (struct lstream *); +extern printf_spec_dynarr *parse_doprnt_spec (Bufbyte *, Bytecount); static void doprnt_1 (Lisp_Object stream, const Bufbyte *string, Bytecount len, Charcount minlen, Charcount maxlen, int minus_flag, int zero_flag) diff --git a/gcc/testsuite/gcc.c-torture/compile/20000224-1.c b/gcc/testsuite/gcc.c-torture/compile/20000224-1.c index 1c72b6accab..085c33fd206 100644 --- a/gcc/testsuite/gcc.c-torture/compile/20000224-1.c +++ b/gcc/testsuite/gcc.c-torture/compile/20000224-1.c @@ -21,6 +21,7 @@ union Lisp_Object } Lisp_Object; extern int initialized; +extern void call_critical_lisp_code (Lisp_Object); void init_device_faces (int *d) { diff --git a/gcc/testsuite/gcc.c-torture/compile/20000314-2.c b/gcc/testsuite/gcc.c-torture/compile/20000314-2.c index 3fdb3c3a857..0ec8181e6df 100644 --- a/gcc/testsuite/gcc.c-torture/compile/20000314-2.c +++ b/gcc/testsuite/gcc.c-torture/compile/20000314-2.c @@ -1,6 +1,7 @@ extern void malloc(__SIZE_TYPE__ size); -toto() +void +toto(void) { malloc(100); } diff --git a/gcc/testsuite/gcc.c-torture/compile/980816-1.c b/gcc/testsuite/gcc.c-torture/compile/980816-1.c index 5bd83b17063..ae942147c4b 100644 --- a/gcc/testsuite/gcc.c-torture/compile/980816-1.c +++ b/gcc/testsuite/gcc.c-torture/compile/980816-1.c @@ -16,6 +16,8 @@ typedef void (*XtCallbackProc)( extern const char XtStrings[]; +extern Widget XtVaCreateManagedWidget(const char *, WidgetClass, Widget, ...); +extern void XtAddCallback(const char *, XtCallbackProc, XtPointer); typedef struct { diff --git a/gcc/testsuite/gcc.c-torture/compile/pr49474.c b/gcc/testsuite/gcc.c-torture/compile/pr49474.c index 0368ccb02fa..01fe0b113e7 100644 --- a/gcc/testsuite/gcc.c-torture/compile/pr49474.c +++ b/gcc/testsuite/gcc.c-torture/compile/pr49474.c @@ -1,8 +1,9 @@ typedef struct gfc_formal_arglist { - int next; + struct gfc_formal_arglist* next; } gfc_actual_arglist; +struct gfc_formal_arglist* update_arglist_pass (gfc_actual_arglist* lst, int po, unsigned argpos, const char *name) { diff --git a/gcc/testsuite/gcc.c-torture/execute/20001111-1.c b/gcc/testsuite/gcc.c-torture/execute/20001111-1.c index 85617c23d44..30c8558efba 100644 --- a/gcc/testsuite/gcc.c-torture/execute/20001111-1.c +++ b/gcc/testsuite/gcc.c-torture/execute/20001111-1.c @@ -16,7 +16,7 @@ foo (unsigned int offset) return i * 0xce2f; buffer = next_buffer; - data = buffer * 0xce2f; + data = (char *) (buffer * 0xce2f); for (i = 0; i < 2; i++) bar (); buffer = next_buffer; @@ -33,9 +33,9 @@ int main () { if (foo (3) != 3) - abort (); + __builtin_abort (); next_buffer = 1; if (foo (2) != 0xce2f + 2) - abort (); - exit (0); + __builtin_abort (); + __builtin_exit (0); } base-commit: ca11744f8c1e5e1cb231b0477236c5f341a66035