adapt debuginfo tests for gdb with native rust support

This commit is contained in:
Tim Neumann 2016-10-25 23:32:04 +02:00
parent 5db21c3af6
commit 9253e1206e
65 changed files with 962 additions and 473 deletions

View file

@ -73,11 +73,13 @@
// gdb-command:continue
// gdb-command:print simple_struct_ident
// gdb-check:$23 = {x = 3537, y = 35437.5, z = true}
// gdbg-check:$23 = {x = 3537, y = 35437.5, z = true}
// gdbr-check:$23 = destructured_for_loop_variable::Struct {x: 3537, y: 35437.5, z: true}
// gdb-command:continue
// gdb-command:print simple_tuple_ident
// gdb-check:$24 = {__0 = 34903493, __1 = 232323}
// gdbg-check:$24 = {__0 = 34903493, __1 = 232323}
// gdbr-check:$24 = (34903493, 232323)
// gdb-command:continue
// === LLDB TESTS ==================================================================================