From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7905) id 7DCC2384DD06; Tue, 21 Feb 2023 12:03:39 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7DCC2384DD06 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1676981019; bh=LpeJZ3GitP2X3hbTNQpz9ipiHRJEUZ9ByORzGfcCXss=; h=From:To:Subject:Date:From; b=AqfaQGhb4v8lZAyZtWQXxYtSsN6pMFZD0ed5mjs6vXaIYWYI3WGxwCIw7UYyc2eXS gGN95/e0VX9d40BUQsy1v7L8TDEwoetxowxSff9gVCvotMT/oNbT4scs8DlhBkTqBe 1JYXFuz5a9MIOrqbxIjvvcZZoxNFcgeHmnhvmjWM= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Arthur Cohen To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-6252] gccrs: Skip this debug test case which is failing on the latest mac-os devtools and its only for deb X-Act-Checkin: gcc X-Git-Author: Philip Herron X-Git-Refname: refs/heads/master X-Git-Oldrev: e7a69d4533add13ff8f5468131cc824f6fa9e154 X-Git-Newrev: 03df9a040c979f97c6b0e1524899a7d457c2cb05 Message-Id: <20230221120339.7DCC2384DD06@sourceware.org> Date: Tue, 21 Feb 2023 12:03:39 +0000 (GMT) List-Id: https://gcc.gnu.org/g:03df9a040c979f97c6b0e1524899a7d457c2cb05 commit r13-6252-g03df9a040c979f97c6b0e1524899a7d457c2cb05 Author: Philip Herron Date: Mon Dec 5 00:31:18 2022 +0000 gccrs: Skip this debug test case which is failing on the latest mac-os devtools and its only for debug info gcc/testsuite/ChangeLog: * rust/debug/chartype.rs: Skip testcases on Darwin architectures. Diff: --- gcc/testsuite/rust/debug/chartype.rs | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/gcc/testsuite/rust/debug/chartype.rs b/gcc/testsuite/rust/debug/chartype.rs index 69e7ab0b17f..3300925d4e0 100644 --- a/gcc/testsuite/rust/debug/chartype.rs +++ b/gcc/testsuite/rust/debug/chartype.rs @@ -1,10 +1,11 @@ -// 'char' should use DW_ATE_UTF -fn main () { - let c = 'x'; // { dg-do compile } -// Use -w to avoid warnings about the unused variables -// DW_ATE_UTF entered in DWARF 4. +// { dg-skip-if "see https://github.com/Rust-GCC/gccrs/pull/1632" { *-*-darwin* } } // { dg-options "-w -gdwarf-4 -dA" } -// DW_ATE_UTF = 0x10 -// { dg-final { scan-assembler "0x10\[ \t]\[^\n\r]* DW_AT_encoding" } } */ +// 'char' should use DW_ATE_UTF +fn main() { + let c = 'x'; + // Use -w to avoid warnings about the unused variables + // DW_ATE_UTF entered in DWARF 4. + // DW_ATE_UTF = 0x10 + // { dg-final { scan-assembler "0x10\[ \t]\[^\n\r]* DW_AT_encoding" } } */ }