about summary refs log tree commit diff
path: root/tests/debuginfo/generic-struct.rs
diff options
context:
space:
mode:
authorBen Kimock <kimockb@gmail.com>2024-08-18 17:41:01 -0400
committerBen Kimock <kimockb@gmail.com>2024-08-18 17:41:01 -0400
commitb2dae987f8d0118be944434f0504f5fefd8737c4 (patch)
tree8ace9c79c287f98e738ef627cda48d3d5e3a1bc1 /tests/debuginfo/generic-struct.rs
parent22ed23d680fbb50c90992b03e50968e7bce6f373 (diff)
downloadrust-b2dae987f8d0118be944434f0504f5fefd8737c4.tar.gz
rust-b2dae987f8d0118be944434f0504f5fefd8737c4.zip
Fixup tests
Diffstat (limited to 'tests/debuginfo/generic-struct.rs')
-rw-r--r--tests/debuginfo/generic-struct.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/debuginfo/generic-struct.rs b/tests/debuginfo/generic-struct.rs
index 09160bc3ba0..f26d823d4f2 100644
--- a/tests/debuginfo/generic-struct.rs
+++ b/tests/debuginfo/generic-struct.rs
@@ -18,14 +18,14 @@
 // lldb-command:run
 
 // lldb-command:v int_int
-// lldb-check:[...] AGenericStruct<i32, i32> { key: 0, value: 1 }
+// lldb-check:[...]AGenericStruct<int, int>) int_int = { key = 0 value = 1 }
 // lldb-command:v int_float
-// lldb-check:[...] AGenericStruct<i32, f64> { key: 2, value: 3.5 }
+// lldb-check:[...]AGenericStruct<int, double>) int_float = { key = 2 value = 3.5 }
 // lldb-command:v float_int
-// lldb-check:[...] AGenericStruct<f64, i32> { key: 4.5, value: 5 }
+// lldb-check:[...]AGenericStruct<double, int>) float_int = { key = 4.5 value = 5 }
 
 // lldb-command:v float_int_float
-// lldb-check:[...] AGenericStruct<f64, generic_struct::AGenericStruct<i32, f64>> { key: 6.5, value: AGenericStruct<i32, f64> { key: 7, value: 8.5 } }
+// lldb-check:[...]AGenericStruct<double, generic_struct::AGenericStruct<int, double> >) float_int_float = { key = 6.5 value = { key = 7 value = 8.5 } }
 
 // === CDB TESTS ===================================================================================