2014-02-07 13:08:32 -06:00
|
|
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-08-29 04:44:11 -05:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-10-02 08:59:22 -05:00
|
|
|
// ignore-tidy-linelength
|
2014-10-09 09:31:03 -05:00
|
|
|
// min-lldb-version: 310
|
2013-11-04 00:53:01 -06:00
|
|
|
|
2014-02-06 21:57:09 -06:00
|
|
|
// compile-flags:-g
|
2014-07-09 07:46:09 -05:00
|
|
|
|
|
|
|
// === GDB TESTS ===================================================================================
|
|
|
|
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:run
|
2013-08-29 04:44:11 -05:00
|
|
|
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print s
|
|
|
|
// gdb-check:$1 = {a = 1, b = 2.5}
|
|
|
|
// gdb-command:continue
|
2013-08-29 04:44:11 -05:00
|
|
|
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print x
|
|
|
|
// gdb-check:$2 = {a = 3, b = 4.5}
|
|
|
|
// gdb-command:print y
|
|
|
|
// gdb-check:$3 = 5
|
|
|
|
// gdb-command:print z
|
|
|
|
// gdb-check:$4 = 6.5
|
|
|
|
// gdb-command:continue
|
2013-08-29 04:44:11 -05:00
|
|
|
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print a
|
|
|
|
// gdb-check:$5 = {7, 8, 9.5, 10.5}
|
|
|
|
// gdb-command:continue
|
2013-08-29 04:44:11 -05:00
|
|
|
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print a
|
|
|
|
// gdb-check:$6 = {11.5, 12.5, 13, 14}
|
|
|
|
// gdb-command:continue
|
2013-08-29 04:44:11 -05:00
|
|
|
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:print x
|
2014-10-02 08:59:22 -05:00
|
|
|
// gdb-check:$7 = {{RUST$ENUM$DISR = Case1, x = 0, y = 8970181431921507452}, {RUST$ENUM$DISR = Case1, 0, 2088533116, 2088533116}}
|
2014-04-24 04:35:48 -05:00
|
|
|
// gdb-command:continue
|
2013-08-29 04:44:11 -05:00
|
|
|
|
2014-07-09 07:46:09 -05:00
|
|
|
|
|
|
|
// === LLDB TESTS ==================================================================================
|
|
|
|
|
|
|
|
// lldb-command:run
|
|
|
|
|
|
|
|
// lldb-command:print s
|
|
|
|
// lldb-check:[...]$0 = Struct { a: 1, b: 2.5 }
|
|
|
|
// lldb-command:continue
|
|
|
|
|
|
|
|
// lldb-command:print x
|
|
|
|
// lldb-check:[...]$1 = Struct { a: 3, b: 4.5 }
|
|
|
|
// lldb-command:print y
|
|
|
|
// lldb-check:[...]$2 = 5
|
|
|
|
// lldb-command:print z
|
|
|
|
// lldb-check:[...]$3 = 6.5
|
|
|
|
// lldb-command:continue
|
|
|
|
|
|
|
|
// lldb-command:print a
|
|
|
|
// lldb-check:[...]$4 = (7, 8, 9.5, 10.5)
|
|
|
|
// lldb-command:continue
|
|
|
|
|
|
|
|
// lldb-command:print a
|
|
|
|
// lldb-check:[...]$5 = Newtype(11.5, 12.5, 13, 14)
|
|
|
|
// lldb-command:continue
|
|
|
|
|
|
|
|
// lldb-command:print x
|
|
|
|
// lldb-check:[...]$6 = Case1 { x: 0, y: 8970181431921507452 }
|
|
|
|
// lldb-command:continue
|
|
|
|
|
2014-12-03 16:48:18 -06:00
|
|
|
#![omit_gdb_pretty_printer_section]
|
|
|
|
|
2014-12-30 22:32:49 -06:00
|
|
|
#[derive(Clone)]
|
2013-08-29 04:44:11 -05:00
|
|
|
struct Struct {
|
|
|
|
a: int,
|
2013-09-26 01:26:09 -05:00
|
|
|
b: f64
|
2013-08-29 04:44:11 -05:00
|
|
|
}
|
|
|
|
|
2014-12-30 22:32:49 -06:00
|
|
|
#[derive(Clone)]
|
2013-08-29 04:44:11 -05:00
|
|
|
struct StructStruct {
|
|
|
|
a: Struct,
|
|
|
|
b: Struct
|
|
|
|
}
|
|
|
|
|
|
|
|
fn fun(s: Struct) {
|
2014-07-09 07:46:09 -05:00
|
|
|
zzz(); // #break
|
2013-08-29 04:44:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn fun_fun(StructStruct { a: x, b: Struct { a: y, b: z } }: StructStruct) {
|
2014-07-09 07:46:09 -05:00
|
|
|
zzz(); // #break
|
2013-08-29 04:44:11 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 01:26:09 -05:00
|
|
|
fn tup(a: (int, uint, f64, f64)) {
|
2014-07-09 07:46:09 -05:00
|
|
|
zzz(); // #break
|
2013-08-29 04:44:11 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 01:26:09 -05:00
|
|
|
struct Newtype(f64, f64, int, uint);
|
2013-08-29 04:44:11 -05:00
|
|
|
|
|
|
|
fn new_type(a: Newtype) {
|
2014-07-09 07:46:09 -05:00
|
|
|
zzz(); // #break
|
2013-08-29 04:44:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// The first element is to ensure proper alignment, irrespective of the machines word size. Since
|
|
|
|
// the size of the discriminant value is machine dependent, this has be taken into account when
|
|
|
|
// datatype layout should be predictable as in this case.
|
|
|
|
enum Enum {
|
|
|
|
Case1 { x: i64, y: i64 },
|
|
|
|
Case2 (i64, i32, i32),
|
|
|
|
}
|
|
|
|
|
|
|
|
fn by_val_enum(x: Enum) {
|
2014-07-09 07:46:09 -05:00
|
|
|
zzz(); // #break
|
2013-08-29 04:44:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
fun(Struct { a: 1, b: 2.5 });
|
|
|
|
fun_fun(StructStruct { a: Struct { a: 3, b: 4.5 }, b: Struct { a: 5, b: 6.5 } });
|
|
|
|
tup((7, 8, 9.5, 10.5));
|
|
|
|
new_type(Newtype(11.5, 12.5, 13, 14));
|
|
|
|
|
|
|
|
// 0b0111110001111100011111000111110001111100011111000111110001111100 = 8970181431921507452
|
|
|
|
// 0b01111100011111000111110001111100 = 2088533116
|
|
|
|
// 0b0111110001111100 = 31868
|
|
|
|
// 0b01111100 = 124
|
2014-11-06 02:05:53 -06:00
|
|
|
by_val_enum(Enum::Case1 { x: 0, y: 8970181431921507452 });
|
2013-08-29 04:44:11 -05:00
|
|
|
}
|
|
|
|
|
2014-07-09 07:46:09 -05:00
|
|
|
fn zzz() { () }
|