about summary refs log tree commit diff
path: root/src/test/debuginfo/function-arg-initialization.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-11-05 22:34:25 -0700
committerGitHub <noreply@github.com>2016-11-05 22:34:25 -0700
commit3fc8304fd92720c688f3d6ac30b3a728d15f7a33 (patch)
tree0ca0e95b5fee227e04f04bfaa4443bdd4a3ae3e4 /src/test/debuginfo/function-arg-initialization.rs
parentcae6ab1c458ade22b4c228fcd4195917c96e2465 (diff)
parentbdacb63f5a93b7359e2d2b6d877f2841032d2ed2 (diff)
downloadrust-3fc8304fd92720c688f3d6ac30b3a728d15f7a33.tar.gz
rust-3fc8304fd92720c688f3d6ac30b3a728d15f7a33.zip
Auto merge of #37597 - alexcrichton:rollup, r=alexcrichton
Rollup of 24 pull requests

- Successful merges: #37255, #37317, #37408, #37410, #37422, #37427, #37470, #37501, #37537, #37556, #37557, #37564, #37565, #37566, #37569, #37574, #37577, #37579, #37583, #37585, #37586, #37587, #37589, #37596
- Failed merges: #37521, #37547
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