about summary refs log tree commit diff
path: root/src/test/debuginfo/function-arg-initialization.rs
diff options
context:
space:
mode:
authorTim Neumann <mail@timnn.me>2016-10-25 23:32:04 +0200
committerTim Neumann <mail@timnn.me>2016-10-31 21:12:59 +0100
commit9253e1206e91f5bd7fafd18f8488a937b0046959 (patch)
treebb73998a3f47c90325381a9b0a0e0733ff47407f /src/test/debuginfo/function-arg-initialization.rs
parent5db21c3af66ccd6d3c48d420a036c65e6f7711ed (diff)
downloadrust-9253e1206e91f5bd7fafd18f8488a937b0046959.tar.gz
rust-9253e1206e91f5bd7fafd18f8488a937b0046959.zip
adapt debuginfo tests for gdb with native rust support
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