1
1
// ignore-windows failing on win32 bot
2
2
// ignore-freebsd: gdb package too new
3
- // ignore-test // Test temporarily ignored due to debuginfo tests being disabled, see PR 47155
4
3
// ignore-android: FIXME(#10381)
5
4
// compile-flags:-g
6
5
// min-gdb-version 7.7
23
22
// gdb-check:$4 = "IAMA string!"
24
23
25
24
// gdb-command: print some
26
- // gdb-check:$5 = Some = {8}
25
+ // gdbg-check:$5 = Some = {8}
26
+ // gdbr-check:$5 = core::option::Option<i16>::Some(8)
27
27
28
28
// gdb-command: print none
29
29
// gdbg-check:$6 = None
30
- // gdbr-check:$6 = core::option::Option::None
30
+ // gdbr-check:$6 = core::option::Option<i64> ::None
31
31
32
32
// gdb-command: print os_string
33
- // gdb-check:$7 = "IAMA OS string 😃 "
33
+ // gdb-check:$7 = "IAMA OS string"
34
34
35
35
// gdb-command: print some_string
36
- // gdb-check:$8 = Some = {"IAMA optional string!"}
36
+ // gdbg-check:$8 = {RUST$ENCODED$ENUM$0$None = Some = {"IAMA optional string!"}}
37
+ // gdbr-check:$8 = core::option::Option<alloc::string::String>::Some("IAMA optional string!")
37
38
38
- // gdb-command: set print length 5
39
+ // gdb-command: set print elements 5
39
40
// gdb-command: print some_string
40
- // gdb-check:$8 = Some = {"IAMA "...}
41
+ // gdbg-check:$9 = {RUST$ENCODED$ENUM$0$None = Some = {"IAMA "...}}
42
+ // gdbr-check:$9 = core::option::Option<alloc::string::String>::Some("IAMA "...)
41
43
44
+ // gdb-command: print empty_str
45
+ // gdb-check:$10 = ""
42
46
43
47
// === LLDB TESTS ==================================================================================
44
48
45
49
// lldb-command: run
46
50
47
- // lldb-command: print slice
48
- // lldb-check:[...]$0 = &[0, 1, 2, 3]
51
+ // lldb-command: fr v slice
52
+ // lldb-check:[...]slice = &[0, 1, 2, 3]
49
53
50
- // lldb-command: print vec
51
- // lldb-check:[...]$1 = vec![4, 5, 6, 7]
54
+ // lldb-command: fr v vec
55
+ // lldb-check:[...]vec = vec![4, 5, 6, 7]
52
56
53
- // lldb-command: print str_slice
54
- // lldb-check:[...]$2 = "IAMA string slice!"
57
+ // lldb-command: fr v str_slice
58
+ // lldb-check:[...]str_slice = "IAMA string slice!"
55
59
56
- // lldb-command: print string
57
- // lldb-check:[...]$3 = "IAMA string!"
60
+ // lldb-command: fr v string
61
+ // lldb-check:[...]string = "IAMA string!"
58
62
59
- // lldb-command: print some
60
- // lldb-check:[...]$4 = Some(8)
63
+ // FIXME #58492
64
+ // lldb-command: fr v some
65
+ // lldb-check:[...]some = Option<i16> { }
61
66
62
- // lldb-command: print none
63
- // lldb-check:[...]$5 = None
67
+ // FIXME #58492
68
+ // lldb-command: fr v none
69
+ // lldb-check:[...]none = Option<i64> { }
64
70
71
+ // lldb-command: fr v empty_str
72
+ // lldb-check:[...]empty_str = ""
65
73
66
74
#![ allow( unused_variables) ]
67
75
use std:: ffi:: OsString ;
@@ -82,14 +90,16 @@ fn main() {
82
90
let string = "IAMA string!" . to_string ( ) ;
83
91
84
92
// OsString
85
- let os_string = OsString :: from ( "IAMA OS string \u{1F603} " ) ;
93
+ let os_string = OsString :: from ( "IAMA OS string" ) ;
86
94
87
95
// Option
88
96
let some = Some ( 8i16 ) ;
89
97
let none: Option < i64 > = None ;
90
98
91
99
let some_string = Some ( "IAMA optional string!" . to_owned ( ) ) ;
92
100
101
+ let empty_str = "" ;
102
+
93
103
zzz ( ) ; // #break
94
104
}
95
105
0 commit comments