about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2024-06-05 09:40:31 -0400
committerBoxy <supbscripter@gmail.com>2024-06-05 22:25:42 +0100
commit2e082677a6d36f1741520b0b824ea43a903a1ba5 (patch)
tree5b92acdcd2e4fec75fb17dc3d523a2cbf92c82b4
parentf74119a2e4a5c040c054ebee1ae2ccda828fd21f (diff)
downloadrust-2e082677a6d36f1741520b0b824ea43a903a1ba5.tar.gz
rust-2e082677a6d36f1741520b0b824ea43a903a1ba5.zip
Fix function-names.rs test
-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 96456d4c6b0..993bdd68fc7 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#[...]}>();
+// gdb-check:[...]static fn function_names::const_generic_fn_non_int<{CONST#a70c39591cb5f53d}>();
 // 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#[...]> (void)
+// cdb-check:[...] a!function_names::const_generic_fn_non_int<CONST$a70c39591cb5f53d> (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)