From patchwork Mon Sep 15 15:41:48 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Earnshaw X-Patchwork-Id: 120293 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 234C83857833 for ; Mon, 15 Sep 2025 15:43:05 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 234C83857833 X-Original-To: binutils@sourceware.org Delivered-To: binutils@sourceware.org Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by sourceware.org (Postfix) with ESMTP id B696D3858C52 for ; Mon, 15 Sep 2025 15:42:07 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org B696D3858C52 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=arm.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org B696D3858C52 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=217.140.110.172 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1757950927; cv=none; b=IFr5/N3ZSFpLhYcKJdCZ8JXrxGsxUsapCWUE2SkQXkCPqZRCHKJYQTo3bD4eZErQcp/VKMJQkv9d+Pq0sfsJxqYRltw+gaH6n3CMVEqhNlb4Uml8/Nt4JLkEHxRkZHgiTdg8okqBE0FEgp/3ccV6Rh9BajmOiFptkD8vcZPjlM8= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1757950927; c=relaxed/simple; bh=KgsvQLcVv09LP6ay9+fX//R2fw0xoA5tyJ2OYZu4Ddk=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=lXGmjCBer5y9mvb1443Zb5at5WajopuhZ95LUCZc/uhZu0clvNCq0n567yRg7vc8f1XMZHkFejfGasQlw9mW6psOnRBXp0J9Xi/Il2Vth4Hrq3wYsPFINmVRQefIuXyuwqHx7PpnotIKRpC2Iwad0PI5qrtbS4z05IQL4t3g0VI= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B696D3858C52 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 1FD281BF7; Mon, 15 Sep 2025 08:41:59 -0700 (PDT) Received: from e120077-lin.cambridge.arm.com (e120077-lin.cambridge.arm.com [10.2.78.71]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 7F1E33F694; Mon, 15 Sep 2025 08:42:06 -0700 (PDT) From: Richard Earnshaw To: binutils@sourceware.org Cc: Richard Earnshaw , nickc@redhat.com, jbeulich@suse.com, amodra@gmail.com Subject: [PATCH 1/4] testsuite: all: use unique test names for multibyte3 tests Date: Mon, 15 Sep 2025 16:41:48 +0100 Message-ID: <20250915154151.2595921-2-rearnsha@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250915154151.2595921-1-rearnsha@arm.com> References: <20250915154151.2595921-1-rearnsha@arm.com> MIME-Version: 1.0 X-Spam-Status: No, score=-12.8 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_NONE, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, RCVD_IN_VALIDITY_RPBL_BLOCKED, RCVD_IN_VALIDITY_SAFE_BLOCKED, 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 X-BeenThere: binutils@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Binutils mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: binutils-bounces~patchwork=sourceware.org@sourceware.org There are two tests of the mutibyte3 source file, with different options. As things stand this results in two distinct tests in the logs with the same name. Avoid this by adding the optional testname option to the second test. --- gas/testsuite/gas/all/gas.exp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gas/testsuite/gas/all/gas.exp b/gas/testsuite/gas/all/gas.exp index 81f4db24fad..af410834081 100644 --- a/gas/testsuite/gas/all/gas.exp +++ b/gas/testsuite/gas/all/gas.exp @@ -578,7 +578,7 @@ run_dump_test "pr27381" run_dump_test "multibyte1" run_dump_test "multibyte2" run_list_test "multibyte3" "--multibyte-handling=warn" -run_list_test "multibyte3" "-f --multibyte-handling=warn" +run_list_test "multibyte3" "-f --multibyte-handling=warn" "all multibyte3 -f" # EVAX has an extra line printed by objdump when there are no relocations, # and doesn't appear to enter absolute symbols into the symbol table. From patchwork Mon Sep 15 15:41:49 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Earnshaw X-Patchwork-Id: 120295 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 22C3C3857C7F for ; Mon, 15 Sep 2025 15:44:49 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 22C3C3857C7F X-Original-To: binutils@sourceware.org Delivered-To: binutils@sourceware.org Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by sourceware.org (Postfix) with ESMTP id E258D3858407 for ; Mon, 15 Sep 2025 15:42:08 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org E258D3858407 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=arm.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org E258D3858407 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=217.140.110.172 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1757950929; cv=none; b=iHJvNlh0gwsdl2LNVv7SsPIZ9bBEUS5LrshLwoWRuUETKGrGm9R1eI61s0u98gNWKuBkj4dHwLM/OxR8Tx1Kf3hag16h29g54gftnBcDDgTRlXCGzXnZBuoFloCmCPQqpm5Jyj5k5s0DiQutOf1WWQODtZeWBs32475p4u9K8Gg= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1757950929; c=relaxed/simple; bh=hOgA57z8E+Pw2S6TFGHX8Q08CnQb6cUf6JeMq0KWeUk=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=VRcnzAbBMqfmKIYJLkyYbVfi0WeSxOMEB9Kes5oNM0MOVLIlbw5Krs7w76XJf5pIclixVqh2eW4OqUF5hZ1RV5NM7Uz8ShQh9kRCM1VpaZvjAE4C1hg6dGrhRWIN3fGteL/9ErcjiHEroF8EBeAsR0GBfDGgzeCnY10zPrUVBQU= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E258D3858407 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 404031D70; Mon, 15 Sep 2025 08:42:00 -0700 (PDT) Received: from e120077-lin.cambridge.arm.com (e120077-lin.cambridge.arm.com [10.2.78.71]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id A169A3F694; Mon, 15 Sep 2025 08:42:07 -0700 (PDT) From: Richard Earnshaw To: binutils@sourceware.org Cc: Richard Earnshaw , nickc@redhat.com, jbeulich@suse.com, amodra@gmail.com Subject: [PATCH 2/4] binutils: testsuite: avoid dup names when using multiple as: directives Date: Mon, 15 Sep 2025 16:41:49 +0100 Message-ID: <20250915154151.2595921-3-rearnsha@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250915154151.2595921-1-rearnsha@arm.com> References: <20250915154151.2595921-1-rearnsha@arm.com> MIME-Version: 1.0 X-Spam-Status: No, score=-12.8 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_NONE, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, RCVD_IN_VALIDITY_RPBL_BLOCKED, RCVD_IN_VALIDITY_SAFE_BLOCKED, 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 X-BeenThere: binutils@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Binutils mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: binutils-bounces~patchwork=sourceware.org@sourceware.org binutils tests support running a test with distinct options to the assembler by allowing #as: #as: But results in both test runs using the same test name in the summary file. This causes confusion if one test fails but the other doesn't (and GCC's compare_tests script will diagnose this as an error). To fix the ambiguity append the appropriate optset to the test name. We only do this if a test has multiple runs in this way to avoid causing every test result name to change. --- binutils/testsuite/lib/binutils-common.exp | 27 +++++++++++++--------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/binutils/testsuite/lib/binutils-common.exp b/binutils/testsuite/lib/binutils-common.exp index 47fe48a4919..fb12607303f 100644 --- a/binutils/testsuite/lib/binutils-common.exp +++ b/binutils/testsuite/lib/binutils-common.exp @@ -1174,17 +1174,17 @@ proc run_dump_test { name {extra_options {}} } { [big_or_little_endian] opts(ld) if { $opts(name) == "" } { - set testname "$subdir/$name" + set base_testname "$subdir/$name" } else { - set testname $opts(name) + set base_testname $opts(name) } set err_warn 0 foreach opt { warning error warning_output error_output } { if { $opts($opt) != "" } { if { $err_warn } { - perror "$testname: bad mix of warning and error test directives" - unresolved $testname + perror "$base_testname: bad mix of warning and error test directives" + unresolved $base_testname return } set err_warn 1 @@ -1223,19 +1223,19 @@ proc run_dump_test { name {extra_options {}} } { } } if { $targmatch == 0 } { - unsupported $testname + unsupported $base_testname return } } foreach targ $opts(alltargets) { if ![match_target $targ] { - unsupported $testname + unsupported $base_testname return } } foreach targ $opts(notarget) { if [match_target $targ] { - unsupported $testname + unsupported $base_testname return } } @@ -1253,7 +1253,7 @@ proc run_dump_test { name {extra_options {}} } { size { set dumpprogram size } default { perror "unrecognized DUMPPROG option $opts(DUMPPROG) in $file.d" - unresolved $testname + unresolved $base_testname return } } @@ -1263,7 +1263,7 @@ proc run_dump_test { name {extra_options {}} } { if {$opts($p) != ""} { if {$dumpprogram != ""} { perror "ambiguous dump program in $file.d" - unresolved $testname + unresolved $base_testname return } else { set dumpprogram $p @@ -1273,7 +1273,7 @@ proc run_dump_test { name {extra_options {}} } { } if { $dumpprogram == "" && $opts(map) == "" && !$err_warn } { perror "dump program unspecified in $file.d" - unresolved $testname + unresolved $base_testname return } } @@ -1312,7 +1312,7 @@ proc run_dump_test { name {extra_options {}} } { if { $cmdret != 0} { send_log "compilation of $cfile failed, exit status $cmdret with <$comp_output>" # Should this be 'unresolved', or is that too silent? - fail $testname + fail $base_testname return 0 } } @@ -1355,6 +1355,11 @@ proc run_dump_test { name {extra_options {}} } { } foreach as_flags $as_final_flags { + if { [llength $as_final_flags] > 1 } { + set testname [concat $base_testname $as_flags] + } else { + set testname $base_testname + } # Assemble each file. set objfiles {} for { set i 0 } { $i < [llength $sourcefiles] } { incr i } { From patchwork Mon Sep 15 15:41:50 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Earnshaw X-Patchwork-Id: 120294 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id EDDE33857B9F for ; Mon, 15 Sep 2025 15:43:07 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org EDDE33857B9F X-Original-To: binutils@sourceware.org Delivered-To: binutils@sourceware.org Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by sourceware.org (Postfix) with ESMTP id E63683857C67 for ; Mon, 15 Sep 2025 15:42:09 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org E63683857C67 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=arm.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org E63683857C67 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=217.140.110.172 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1757950930; cv=none; b=C0fUoJPABJ73zNFwGV0DtV1VDXGQBxOSJE0Tr8GyxU37Ru1stMcIFOo0pyfYZWqO3tKVK7zASHO5DtfJvIO89hXE+/znQ/TF0fft59tOPOWlH21dWaOUI51pNvfjslCgLITS4cvRRecaPB/Q5kyfvXX73ZLQUqyWOvkoWoFrtjo= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1757950930; c=relaxed/simple; bh=zOoiO8DfgB7UlD01MaJ4zjUDolliMmIz6fr/7Bop5Ts=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=emV+JmYLR8yik3bApONKIlSjr4RoUbMGTRM9rQ65DisnqXf+NvEf8oqZ6OwDL988VaUUZYVHDYIxlMj6vY02+6g8+K3qgrTWLr+8RCClOZW1nYHGu1/RBShNIC5cJ548gUNNFDcm/r5gF0E3nspcvjmG8GVpWu4MFO6WjQxn9xY= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E63683857C67 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 64E071424; Mon, 15 Sep 2025 08:42:01 -0700 (PDT) Received: from e120077-lin.cambridge.arm.com (e120077-lin.cambridge.arm.com [10.2.78.71]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id C30B53F694; Mon, 15 Sep 2025 08:42:08 -0700 (PDT) From: Richard Earnshaw To: binutils@sourceware.org Cc: Richard Earnshaw , nickc@redhat.com, jbeulich@suse.com, amodra@gmail.com Subject: [PATCH 3/4] testsuite: elf: avoid clashing mbind test names Date: Mon, 15 Sep 2025 16:41:50 +0100 Message-ID: <20250915154151.2595921-4-rearnsha@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250915154151.2595921-1-rearnsha@arm.com> References: <20250915154151.2595921-1-rearnsha@arm.com> MIME-Version: 1.0 X-Spam-Status: No, score=-12.8 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_NONE, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, RCVD_IN_VALIDITY_RPBL_BLOCKED, RCVD_IN_VALIDITY_SAFE_BLOCKED, 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 X-BeenThere: binutils@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Binutils mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: binutils-bounces~patchwork=sourceware.org@sourceware.org It's not entirely clear to me why the mbind tests section12b.d and section16b.d both use 16 in their test names, but it is clearly undesirable that both have identical names. Disambiguate them by adding '(unique)' to section16b.d, since that is the distinguishing feature of the two tests. --- gas/testsuite/gas/elf/section16b.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gas/testsuite/gas/elf/section16b.d b/gas/testsuite/gas/elf/section16b.d index 6e085c3cab4..1c2e5bdcfb2 100644 --- a/gas/testsuite/gas/elf/section16b.d +++ b/gas/testsuite/gas/elf/section16b.d @@ -1,7 +1,7 @@ #source: section16.s #as: --no-pad-sections #objdump: -s -#name: mbind section contents 16 +#name: mbind section contents 16 (unique) # RX annoyingly reorders the sections so that they do not match the sequence # expected below. #xfail: rx-*-* From patchwork Mon Sep 15 15:41:51 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Earnshaw X-Patchwork-Id: 120296 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id E5DF83857BA3 for ; Mon, 15 Sep 2025 15:46:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E5DF83857BA3 X-Original-To: binutils@sourceware.org Delivered-To: binutils@sourceware.org Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by sourceware.org (Postfix) with ESMTP id 2F3BE3857C7F for ; Mon, 15 Sep 2025 15:42:11 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 2F3BE3857C7F Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=arm.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 2F3BE3857C7F Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=217.140.110.172 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1757950931; cv=none; b=J9KV7DMGCSMZTCoPaDPAlbzlTQkyi9ysrZwGPKE98CVhinrKyjEdh0GAHXE90fs8r/a/o6oVAnsgATGUVZykoSUwI+t/0P5RufLdI0z+ByWZiKwHVSSDwoZUhdExCWNdJUO3E77NyP22AbRcFSsIbm3fhpMrNOKjP/7dLAkR+tg= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1757950931; c=relaxed/simple; bh=uHiYY0hUT7t5zcTnpJcS0Ebe/k/kHXa88GX0QNC7NMI=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=u9umsZFSvxdfwXMYPJPnk2ppizFH9NfjC4Dba3fdgNyMn0V5qHiXfeWkD6+zsCkf7cMkK9bi3dKUlsIn7wukyn0k6GScz/HOYtQ0N6BLacsy9VLDfcenexqRyIw2FjJc2JXBtLgX3rf7wDcj9Mv2fRsAVY6QMZG4KLWxw0q5rsk= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2F3BE3857C7F Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 873521BF7; Mon, 15 Sep 2025 08:42:02 -0700 (PDT) Received: from e120077-lin.cambridge.arm.com (e120077-lin.cambridge.arm.com [10.2.78.71]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id E4DCD3F694; Mon, 15 Sep 2025 08:42:09 -0700 (PDT) From: Richard Earnshaw To: binutils@sourceware.org Cc: Richard Earnshaw , nickc@redhat.com, jbeulich@suse.com, amodra@gmail.com Subject: [PATCH 4/4] testsuite; Avoid clashing names in err-sizeof.s Date: Mon, 15 Sep 2025 16:41:51 +0100 Message-ID: <20250915154151.2595921-5-rearnsha@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250915154151.2595921-1-rearnsha@arm.com> References: <20250915154151.2595921-1-rearnsha@arm.com> MIME-Version: 1.0 X-Spam-Status: No, score=-12.8 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_NONE, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, RCVD_IN_VALIDITY_RPBL_BLOCKED, RCVD_IN_VALIDITY_SAFE_BLOCKED, 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 X-BeenThere: binutils@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Binutils mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: binutils-bounces~patchwork=sourceware.org@sourceware.org The first junk test in this file was missing "junk" in the test name, which resulted in a duplicate test name when comparing with the real test on line 3. --- gas/testsuite/gas/all/err-sizeof.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gas/testsuite/gas/all/err-sizeof.s b/gas/testsuite/gas/all/err-sizeof.s index a70cd191f7b..066142b0c33 100644 --- a/gas/testsuite/gas/all/err-sizeof.s +++ b/gas/testsuite/gas/all/err-sizeof.s @@ -10,7 +10,7 @@ .long .startof.() ;# { dg-error "Error: expected symbol name" } ;# We don't really care about these, but I didn't find a way to discard ;# them, and I also don't want to use dg-excess-errors here. -;# { dg-error "junk at end" "" { target *-*-* } 3 } +;# { dg-error "junk at end" "junk" { target *-*-* } 3 } ;# { dg-error "junk at end" "junk" { target *-*-* } 4 } ;# { dg-error "junk at end" "junk" { target *-*-* } 5 } ;# { dg-error "junk at end" "junk" { target *-*-* } 6 }