about summary refs log tree commit diff
path: root/tests/debuginfo
diff options
context:
space:
mode:
authorBoxy <supbscripter@gmail.com>2024-06-04 09:10:08 +0100
committerBoxy <supbscripter@gmail.com>2024-06-05 22:25:42 +0100
commitf74119a2e4a5c040c054ebee1ae2ccda828fd21f (patch)
treef74f411f1cd0b38b54711cd64b8c9f845050abc7 /tests/debuginfo
parent7fa98d0c01050ee8c39bfc644d1414f5a21a1f21 (diff)
downloadrust-f74119a2e4a5c040c054ebee1ae2ccda828fd21f.tar.gz
rust-f74119a2e4a5c040c054ebee1ae2ccda828fd21f.zip
Bless tests and handle tests/crashes
Diffstat (limited to 'tests/debuginfo')
-rw-r--r--tests/debuginfo/function-names.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/debuginfo/function-names.rs b/tests/debuginfo/function-names.rs
index 2b0c2593676..96456d4c6b0 100644
--- a/tests/debuginfo/function-names.rs
+++ b/tests/debuginfo/function-names.rs
@@ -37,7 +37,7 @@
 // Const generic parameter
 // gdb-command:info functions -q function_names::const_generic_fn.*
 // gdb-check:[...]static fn function_names::const_generic_fn_bool<false>();
-// gdb-check:[...]static fn function_names::const_generic_fn_non_int<{CONST#ad91263f6d2dd96e}>();
+// gdb-check:[...]static fn function_names::const_generic_fn_non_int<{CONST#[...]}>();
 // gdb-check:[...]static fn function_names::const_generic_fn_signed_int<-7>();
 // gdb-check:[...]static fn function_names::const_generic_fn_unsigned_int<14>();
 
@@ -76,7 +76,7 @@
 // Const generic parameter
 // cdb-command:x a!function_names::const_generic_fn*
 // cdb-check:[...] a!function_names::const_generic_fn_bool<false> (void)
-// cdb-check:[...] a!function_names::const_generic_fn_non_int<CONST$ad91263f6d2dd96e> (void)
+// cdb-check:[...] a!function_names::const_generic_fn_non_int<CONST#[...]> (void)
 // cdb-check:[...] a!function_names::const_generic_fn_unsigned_int<14> (void)
 // cdb-check:[...] a!function_names::const_generic_fn_signed_int<-7> (void)