diff options
author | Philip Herron <philip.herron@embecosm.com> | 2022-12-05 00:31:18 +0000 |
---|---|---|
committer | Philip Herron <philip.herron@embecosm.com> | 2022-12-05 00:31:18 +0000 |
commit | 31dd14e197c00891751994839b16a5a193a71820 (patch) | |
tree | 465b0f518b726001cda0e05c0a3a1344913bb022 /gcc | |
parent | 48b11d3bb83e27795a419e473e4822329216806a (diff) | |
download | gcc-31dd14e197c00891751994839b16a5a193a71820.zip gcc-31dd14e197c00891751994839b16a5a193a71820.tar.gz gcc-31dd14e197c00891751994839b16a5a193a71820.tar.bz2 |
Skip this debug test case which is failing on the latest mac-os devtools and its only for debug info
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/rust/debug/chartype.rs | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gcc/testsuite/rust/debug/chartype.rs b/gcc/testsuite/rust/debug/chartype.rs index 69e7ab0..3300925 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" } } */ } |