about summary refs log tree commit diff
path: root/src/test/debuginfo/function-arg-initialization.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-11-05 10:51:34 -0700
committerAlex Crichton <alex@alexcrichton.com>2016-11-05 10:51:34 -0700
commit18ee04b3dfb5dfdb7ce0e701d85763751cfe6cde (patch)
tree601b4f1ef5b7b4c3e1210635a9a993449b4fe47d /src/test/debuginfo/function-arg-initialization.rs
parent11251e59b9133f2d226c7bbc8a59a80b53edb0a7 (diff)
parentd2cb515ab045eefa1fb7ec36078fa0440e4affec (diff)
downloadrust-18ee04b3dfb5dfdb7ce0e701d85763751cfe6cde.tar.gz
rust-18ee04b3dfb5dfdb7ce0e701d85763751cfe6cde.zip
Merge branch 'gdb-next-gen' of https://github.com/TimNN/rust into rollup
Diffstat (limited to 'src/test/debuginfo/function-arg-initialization.rs')
-rw-r--r--src/test/debuginfo/function-arg-initialization.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/test/debuginfo/function-arg-initialization.rs b/src/test/debuginfo/function-arg-initialization.rs
index 57654acaf73..21fdc4e5e88 100644
--- a/src/test/debuginfo/function-arg-initialization.rs
+++ b/src/test/debuginfo/function-arg-initialization.rs
@@ -8,6 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+// ignore-tidy-linelength
+
 // min-lldb-version: 310
 
 // This test case checks if function arguments already have the correct value
@@ -34,9 +36,11 @@
 
 // NON IMMEDIATE ARGS
 // gdb-command:print a
-// gdb-check:$4 = {a = 3, b = 4, c = 5, d = 6, e = 7, f = 8, g = 9, h = 10}
+// gdbg-check:$4 = {a = 3, b = 4, c = 5, d = 6, e = 7, f = 8, g = 9, h = 10}
+// gdbt-check:$4 = function_arg_initialization::BigStruct {a: 3, b: 4, c: 5, d: 6, e: 7, f: 8, g: 9, h: 10}
 // gdb-command:print b
-// gdb-check:$5 = {a = 11, b = 12, c = 13, d = 14, e = 15, f = 16, g = 17, h = 18}
+// gdbg-check:$5 = {a = 11, b = 12, c = 13, d = 14, e = 15, f = 16, g = 17, h = 18}
+// gdbt-check:$5 = function_arg_initialization::BigStruct {a: 11, b: 12, c: 13, d: 14, e: 15, f: 16, g: 17, h: 18}
 // gdb-command:continue
 
 // BINDING