// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // min-lldb-version: 310 // compile-flags:-g // === GDB TESTS =================================================================================== // gdb-command:print/d 'simple_tuple::NO_PADDING_8' // gdb-check:$1 = {__0 = -50, __1 = 50} // gdb-command:print 'simple_tuple::NO_PADDING_16' // gdb-check:$2 = {__0 = -1, __1 = 2, __2 = 3} // gdb-command:print 'simple_tuple::NO_PADDING_32' // gdb-check:$3 = {__0 = 4, __1 = 5, __2 = 6} // gdb-command:print 'simple_tuple::NO_PADDING_64' // gdb-check:$4 = {__0 = 7, __1 = 8, __2 = 9} // gdb-command:print 'simple_tuple::INTERNAL_PADDING_1' // gdb-check:$5 = {__0 = 10, __1 = 11} // gdb-command:print 'simple_tuple::INTERNAL_PADDING_2' // gdb-check:$6 = {__0 = 12, __1 = 13, __2 = 14, __3 = 15} // gdb-command:print 'simple_tuple::PADDING_AT_END' // gdb-check:$7 = {__0 = 16, __1 = 17} // gdb-command:run // gdb-command:print/d noPadding8 // gdb-check:$8 = {__0 = -100, __1 = 100} // gdb-command:print noPadding16 // gdb-check:$9 = {__0 = 0, __1 = 1, __2 = 2} // gdb-command:print noPadding32 // gdb-check:$10 = {__0 = 3, __1 = 4.5, __2 = 5} // gdb-command:print noPadding64 // gdb-check:$11 = {__0 = 6, __1 = 7.5, __2 = 8} // gdb-command:print internalPadding1 // gdb-check:$12 = {__0 = 9, __1 = 10} // gdb-command:print internalPadding2 // gdb-check:$13 = {__0 = 11, __1 = 12, __2 = 13, __3 = 14} // gdb-command:print paddingAtEnd // gdb-check:$14 = {__0 = 15, __1 = 16} // gdb-command:print/d 'simple_tuple::NO_PADDING_8' // gdb-check:$15 = {__0 = -127, __1 = 127} // gdb-command:print 'simple_tuple::NO_PADDING_16' // gdb-check:$16 = {__0 = -10, __1 = 10, __2 = 9} // gdb-command:print 'simple_tuple::NO_PADDING_32' // gdb-check:$17 = {__0 = 14, __1 = 15, __2 = 16} // gdb-command:print 'simple_tuple::NO_PADDING_64' // gdb-check:$18 = {__0 = 17, __1 = 18, __2 = 19} // gdb-command:print 'simple_tuple::INTERNAL_PADDING_1' // gdb-check:$19 = {__0 = 110, __1 = 111} // gdb-command:print 'simple_tuple::INTERNAL_PADDING_2' // gdb-check:$20 = {__0 = 112, __1 = 113, __2 = 114, __3 = 115} // gdb-command:print 'simple_tuple::PADDING_AT_END' // gdb-check:$21 = {__0 = 116, __1 = 117} // === LLDB TESTS ================================================================================== // lldb-command:run // lldb-command:print/d noPadding8 // lldb-check:[...]$0 = (-100, 100) // lldb-command:print noPadding16 // lldb-check:[...]$1 = (0, 1, 2) // lldb-command:print noPadding32 // lldb-check:[...]$2 = (3, 4.5, 5) // lldb-command:print noPadding64 // lldb-check:[...]$3 = (6, 7.5, 8) // lldb-command:print internalPadding1 // lldb-check:[...]$4 = (9, 10) // lldb-command:print internalPadding2 // lldb-check:[...]$5 = (11, 12, 13, 14) // lldb-command:print paddingAtEnd // lldb-check:[...]$6 = (15, 16) #![allow(unused_variables)] #![allow(dead_code)] #![feature(omit_gdb_pretty_printer_section)] #![omit_gdb_pretty_printer_section] static mut NO_PADDING_8: (i8, u8) = (-50, 50); static mut NO_PADDING_16: (i16, i16, u16) = (-1, 2, 3); static mut NO_PADDING_32: (i32, f32, u32) = (4, 5.0, 6); static mut NO_PADDING_64: (i64, f64, u64) = (7, 8.0, 9); static mut INTERNAL_PADDING_1: (i16, i32) = (10, 11); static mut INTERNAL_PADDING_2: (i16, i32, u32, u64) = (12, 13, 14, 15); static mut PADDING_AT_END: (i32, i16) = (16, 17); fn main() { let noPadding8: (i8, u8) = (-100, 100); let noPadding16: (i16, i16, u16) = (0, 1, 2); let noPadding32: (i32, f32, u32) = (3, 4.5, 5); let noPadding64: (i64, f64, u64) = (6, 7.5, 8); let internalPadding1: (i16, i32) = (9, 10); let internalPadding2: (i16, i32, u32, u64) = (11, 12, 13, 14); let paddingAtEnd: (i32, i16) = (15, 16); unsafe { NO_PADDING_8 = (-127, 127); NO_PADDING_16 = (-10, 10, 9); NO_PADDING_32 = (14, 15.0, 16); NO_PADDING_64 = (17, 18.0, 19); INTERNAL_PADDING_1 = (110, 111); INTERNAL_PADDING_2 = (112, 113, 114, 115); PADDING_AT_END = (116, 117); } zzz(); // #break } fn zzz() {()}