From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id D7F843858D1E for ; Fri, 20 Jan 2023 16:38:23 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org D7F843858D1E Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=simark.ca Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=simark.ca Received: from [10.0.0.11] (unknown [217.28.27.60]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 455441E0D3; Fri, 20 Jan 2023 11:38:23 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=simark.ca; s=mail; t=1674232703; bh=ZDGDXa6KgZ9cxs6VARTBqwTy11Uq1byz3h+oiOu2fXY=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=j8qgdU1CL8bBjThlQh/2Apej6NrKbrTaAqH64B3Mh3Reb3YoUUrHdMM0bGiSX8rLl 2s3XBddAfz0Qdmxb3iFEWQTXxFqaoIj5O1SEDzGwfcSsOH6UppSrl7NEe0q4abN/wL JzKo9ss577m0icsFfacA4rmljn2x+syVNfKYG05Y= Message-ID: Date: Fri, 20 Jan 2023 11:38:22 -0500 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Subject: Re: [PATCH 1/2] gdb/testsuite: add test for negative subrange bounds with unsigned form Content-Language: en-US To: Andrew Burgess , Simon Marchi via Gdb-patches Cc: Simon Marchi References: <20230120050824.306976-1-simon.marchi@efficios.com> <87ilh1e5cw.fsf@redhat.com> From: Simon Marchi In-Reply-To: <87ilh1e5cw.fsf@redhat.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-5.0 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NICE_REPLY_A,SPF_HELO_PASS,SPF_PASS,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: >> @@ -67,3 +90,5 @@ gdb_test_no_output "set language pascal" >> >> gdb_test "ptype TByteArray" \ >> "type = array \\\[0\\.\\.191\\\] of byte" >> +gdb_test "ptype subrange_with_buggy_negative_bounds_variable" \ >> + "type = -16..-12" > > Should be "type = -16\\.\\.-12" Indeed, fixed. > Otherwise, looks good. Thanks, will push. Simon