From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2209) id E5AD23858D37; Thu, 2 Mar 2023 22:53:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E5AD23858D37 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1677797590; bh=no06w0F+OOIhPOXQTN0gs6pO76dK7ExuZqQXaD03t7M=; h=From:To:Subject:Date:From; b=gkBLf7Hf3i+wFWF4Bmi52Fwb+QkbXgil35Eb5mrWPbfasvaKiFnCHa2XSwdDFPalT LAn+GgsEpIaOc0ESTMKRobClqi01biV1GrCFfpdF7o6R4jtFcDaxfnb9/X6nQkXlHO eiVXHqANuE31PGalpeo77+XmaKetu+2TQrpxUXlU= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: David Malcolm To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-6425] jit, testsuite: fix a failing test by updating its error string [PR107999] X-Act-Checkin: gcc X-Git-Author: Guillaume Gomez X-Git-Refname: refs/heads/master X-Git-Oldrev: 2639f9d2313664e6b4ed2f8131fefa60aeeb0518 X-Git-Newrev: 6b432c0f777ab9b8436fb07f71de6ea4d259b869 Message-Id: <20230302225310.E5AD23858D37@sourceware.org> Date: Thu, 2 Mar 2023 22:53:10 +0000 (GMT) List-Id: https://gcc.gnu.org/g:6b432c0f777ab9b8436fb07f71de6ea4d259b869 commit r13-6425-g6b432c0f777ab9b8436fb07f71de6ea4d259b869 Author: Guillaume Gomez Date: Thu Mar 2 17:52:07 2023 -0500 jit, testsuite: fix a failing test by updating its error string [PR107999] gcc/testsuite/ChangeLog: PR jit/107999 * jit.dg/test-error-array-bounds.c: Update test. Signed-off-by: Guillaume Gomez Diff: --- gcc/testsuite/jit.dg/test-error-array-bounds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/testsuite/jit.dg/test-error-array-bounds.c b/gcc/testsuite/jit.dg/test-error-array-bounds.c index b6c0ee526d4..a0dead13cb7 100644 --- a/gcc/testsuite/jit.dg/test-error-array-bounds.c +++ b/gcc/testsuite/jit.dg/test-error-array-bounds.c @@ -70,5 +70,5 @@ verify_code (gcc_jit_context *ctxt, gcc_jit_result *result) /* ...and that the message was captured by the API. */ CHECK_STRING_VALUE (gcc_jit_context_get_first_error (ctxt), "array subscript 10 is above array bounds of" - " 'char[10]' [-Warray-bounds]"); + " 'char[10]' [-Warray-bounds=]"); }