2015-03-12 11:05:44 -05:00
|
|
|
// ignore-freebsd: gdb package too new
|
Add basic CDB support to debuginfo compiletest s, to help catch `*.natvis` regressions, like those fixed in #60687.
Several Microsoft debuggers (VS, VS Code, WinDbg, CDB, ...) consume the `*.natvis` files we embed into rust `*.pdb` files.
While this only tests CDB, that test coverage should help for all of them.
CHANGES
src\bootstrap
- test.rs: Run CDB debuginfo tests on MSVC targets
src\test\debuginfo
- issue-13213.rs: CDB has trouble with this, skip for now (newly discovered regression?)
- pretty-std.rs: Was ignored, re-enable for CDB only to start with, add CDB tests.
- should-fail.rs: Add CDB tests.
src\tools\compiletest:
- Added "-cdb" option
- Added Mode::DebugInfoCdb ("debuginfo-cdb")
- Added run_debuginfo_cdb_test[_no_opt]
- Renamed Mode::DebugInfoBoth -> DebugInfoGdbLldb ("debuginfo-gdb+lldb") since it's no longer clear what "Both" means.
- Find CDB at the default Win10 SDK install path "C:\Program Files (x86)\Windows Kits\10\Debugger\*\cdb.exe"
- Ignore CDB tests if CDB not found.
ISSUES
- `compute_stamp_hash`: not sure if there's any point in hashing `%ProgramFiles(x86)%`
- `OsString` lacks any `*.natvis` entries (would be nice to add in a followup changelist)
- DSTs (array/string slices) which work in VS & VS Code fail in CDB.
- I've avoided `Mode::DebugInfoAll` as 3 debuggers leads to pow(2,3)=8 possible combinations.
REFERENCE
CDB is not part of the base Visual Studio install, but can be added via the Windows 10 SDK:
https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk
Installing just "Debugging Tools for Windows" is sufficient.
CDB appears to already be installed on appveyor CI, where this changelist can find it, based on it's use here:
https://github.com/rust-lang/rust/blob/0ffc57311030a1930edfa721fe57d0000a063af4/appveyor.yml#L227
CDB commands and command line reference:
https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/debugger-reference
2019-05-19 19:10:48 -05:00
|
|
|
// only-cdb // Test temporarily ignored on GDB/LLDB due to debuginfo tests being disabled, see PR 47155
|
2015-03-12 11:05:44 -05:00
|
|
|
// ignore-android: FIXME(#10381)
|
|
|
|
// compile-flags:-g
|
|
|
|
// min-gdb-version 7.7
|
2015-05-09 09:48:36 -05:00
|
|
|
// min-lldb-version: 310
|
|
|
|
|
|
|
|
// === GDB TESTS ===================================================================================
|
2015-03-12 11:05:44 -05:00
|
|
|
|
|
|
|
// gdb-command: run
|
|
|
|
|
|
|
|
// gdb-command: print slice
|
|
|
|
// gdb-check:$1 = &[i32](len: 4) = {0, 1, 2, 3}
|
|
|
|
|
|
|
|
// gdb-command: print vec
|
|
|
|
// gdb-check:$2 = Vec<u64>(len: 4, cap: [...]) = {4, 5, 6, 7}
|
|
|
|
|
|
|
|
// gdb-command: print str_slice
|
|
|
|
// gdb-check:$3 = "IAMA string slice!"
|
|
|
|
|
|
|
|
// gdb-command: print string
|
|
|
|
// gdb-check:$4 = "IAMA string!"
|
|
|
|
|
|
|
|
// gdb-command: print some
|
|
|
|
// gdb-check:$5 = Some = {8}
|
|
|
|
|
|
|
|
// gdb-command: print none
|
2016-10-25 16:32:04 -05:00
|
|
|
// gdbg-check:$6 = None
|
|
|
|
// gdbr-check:$6 = core::option::Option::None
|
2015-03-12 11:05:44 -05:00
|
|
|
|
2017-06-09 10:51:28 -05:00
|
|
|
// gdb-command: print os_string
|
|
|
|
// gdb-check:$7 = "IAMA OS string 😃"
|
2017-06-02 08:18:00 -05:00
|
|
|
|
2017-06-09 10:51:28 -05:00
|
|
|
// gdb-command: print some_string
|
|
|
|
// gdb-check:$8 = Some = {"IAMA optional string!"}
|
2017-06-01 13:26:09 -05:00
|
|
|
|
2017-10-03 14:28:57 -05:00
|
|
|
// gdb-command: set print length 5
|
|
|
|
// gdb-command: print some_string
|
|
|
|
// gdb-check:$8 = Some = {"IAMA "...}
|
|
|
|
|
2015-05-09 09:48:36 -05:00
|
|
|
|
|
|
|
// === LLDB TESTS ==================================================================================
|
|
|
|
|
|
|
|
// lldb-command: run
|
|
|
|
|
|
|
|
// lldb-command: print slice
|
|
|
|
// lldb-check:[...]$0 = &[0, 1, 2, 3]
|
|
|
|
|
|
|
|
// lldb-command: print vec
|
|
|
|
// lldb-check:[...]$1 = vec![4, 5, 6, 7]
|
|
|
|
|
|
|
|
// lldb-command: print str_slice
|
|
|
|
// lldb-check:[...]$2 = "IAMA string slice!"
|
|
|
|
|
|
|
|
// lldb-command: print string
|
|
|
|
// lldb-check:[...]$3 = "IAMA string!"
|
|
|
|
|
|
|
|
// lldb-command: print some
|
|
|
|
// lldb-check:[...]$4 = Some(8)
|
|
|
|
|
|
|
|
// lldb-command: print none
|
|
|
|
// lldb-check:[...]$5 = None
|
|
|
|
|
|
|
|
|
Add basic CDB support to debuginfo compiletest s, to help catch `*.natvis` regressions, like those fixed in #60687.
Several Microsoft debuggers (VS, VS Code, WinDbg, CDB, ...) consume the `*.natvis` files we embed into rust `*.pdb` files.
While this only tests CDB, that test coverage should help for all of them.
CHANGES
src\bootstrap
- test.rs: Run CDB debuginfo tests on MSVC targets
src\test\debuginfo
- issue-13213.rs: CDB has trouble with this, skip for now (newly discovered regression?)
- pretty-std.rs: Was ignored, re-enable for CDB only to start with, add CDB tests.
- should-fail.rs: Add CDB tests.
src\tools\compiletest:
- Added "-cdb" option
- Added Mode::DebugInfoCdb ("debuginfo-cdb")
- Added run_debuginfo_cdb_test[_no_opt]
- Renamed Mode::DebugInfoBoth -> DebugInfoGdbLldb ("debuginfo-gdb+lldb") since it's no longer clear what "Both" means.
- Find CDB at the default Win10 SDK install path "C:\Program Files (x86)\Windows Kits\10\Debugger\*\cdb.exe"
- Ignore CDB tests if CDB not found.
ISSUES
- `compute_stamp_hash`: not sure if there's any point in hashing `%ProgramFiles(x86)%`
- `OsString` lacks any `*.natvis` entries (would be nice to add in a followup changelist)
- DSTs (array/string slices) which work in VS & VS Code fail in CDB.
- I've avoided `Mode::DebugInfoAll` as 3 debuggers leads to pow(2,3)=8 possible combinations.
REFERENCE
CDB is not part of the base Visual Studio install, but can be added via the Windows 10 SDK:
https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk
Installing just "Debugging Tools for Windows" is sufficient.
CDB appears to already be installed on appveyor CI, where this changelist can find it, based on it's use here:
https://github.com/rust-lang/rust/blob/0ffc57311030a1930edfa721fe57d0000a063af4/appveyor.yml#L227
CDB commands and command line reference:
https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/debugger-reference
2019-05-19 19:10:48 -05:00
|
|
|
// === CDB TESTS ==================================================================================
|
|
|
|
|
|
|
|
// cdb-command: g
|
|
|
|
|
|
|
|
// cdb-command: dx slice,d
|
|
|
|
// cdb-check:slice,d [...]
|
|
|
|
// NOTE: While slices have a .natvis entry that works in VS & VS Code, it fails in CDB 10.0.18362.1
|
|
|
|
|
|
|
|
// cdb-command: dx vec,d
|
|
|
|
// cdb-check:vec,d [...] : { size=4 } [Type: [...]::Vec<u64>]
|
|
|
|
// cdb-check: [size] : 4 [Type: [...]]
|
|
|
|
// cdb-check: [capacity] : [...] [Type: [...]]
|
|
|
|
// cdb-check: [0] : 4 [Type: unsigned __int64]
|
|
|
|
// cdb-check: [1] : 5 [Type: unsigned __int64]
|
|
|
|
// cdb-check: [2] : 6 [Type: unsigned __int64]
|
|
|
|
// cdb-check: [3] : 7 [Type: unsigned __int64]
|
|
|
|
|
|
|
|
// cdb-command: dx str_slice
|
|
|
|
// cdb-check:str_slice [...]
|
|
|
|
// NOTE: While string slices have a .natvis entry that works in VS & VS Code, it fails in CDB 10.0.18362.1
|
|
|
|
|
|
|
|
// cdb-command: dx string
|
|
|
|
// cdb-check:string : "IAMA string!" [Type: [...]::String]
|
|
|
|
// cdb-check: [<Raw View>] [Type: [...]::String]
|
|
|
|
// cdb-check: [size] : 0xc [Type: [...]]
|
|
|
|
// cdb-check: [capacity] : 0xc [Type: [...]]
|
|
|
|
// cdb-check: [0] : 73 'I' [Type: char]
|
|
|
|
// cdb-check: [1] : 65 'A' [Type: char]
|
|
|
|
// cdb-check: [2] : 77 'M' [Type: char]
|
|
|
|
// cdb-check: [3] : 65 'A' [Type: char]
|
|
|
|
// cdb-check: [4] : 32 ' ' [Type: char]
|
|
|
|
// cdb-check: [5] : 115 's' [Type: char]
|
|
|
|
// cdb-check: [6] : 116 't' [Type: char]
|
|
|
|
// cdb-check: [7] : 114 'r' [Type: char]
|
|
|
|
// cdb-check: [8] : 105 'i' [Type: char]
|
|
|
|
// cdb-check: [9] : 110 'n' [Type: char]
|
|
|
|
// cdb-check: [10] : 103 'g' [Type: char]
|
|
|
|
// cdb-check: [11] : 33 '!' [Type: char]
|
|
|
|
|
|
|
|
// cdb-command: dx os_string
|
|
|
|
// cdb-check:os_string [Type: [...]::OsString]
|
|
|
|
// NOTE: OsString doesn't have a .natvis entry yet.
|
|
|
|
|
|
|
|
// cdb-command: dx some
|
|
|
|
// cdb-check:some : { Some 8 } [Type: [...]::Option<i16>]
|
|
|
|
// cdb-command: dx none
|
|
|
|
// cdb-check:none : { None } [Type: [...]::Option<i64>]
|
|
|
|
// cdb-command: dx some_string
|
|
|
|
// cdb-check:some_string : { Some "IAMA optional string!" } [Type: [...]::Option<[...]::String>]
|
|
|
|
|
2015-04-21 23:53:07 -05:00
|
|
|
#![allow(unused_variables)]
|
2017-06-02 08:18:00 -05:00
|
|
|
use std::ffi::OsString;
|
|
|
|
|
2015-04-21 23:53:07 -05:00
|
|
|
|
2015-03-12 11:05:44 -05:00
|
|
|
fn main() {
|
|
|
|
|
|
|
|
// &[]
|
|
|
|
let slice: &[i32] = &[0, 1, 2, 3];
|
|
|
|
|
|
|
|
// Vec
|
|
|
|
let vec = vec![4u64, 5, 6, 7];
|
|
|
|
|
|
|
|
// &str
|
|
|
|
let str_slice = "IAMA string slice!";
|
|
|
|
|
|
|
|
// String
|
|
|
|
let string = "IAMA string!".to_string();
|
|
|
|
|
2017-06-02 08:18:00 -05:00
|
|
|
// OsString
|
|
|
|
let os_string = OsString::from("IAMA OS string \u{1F603}");
|
|
|
|
|
2015-03-12 11:05:44 -05:00
|
|
|
// Option
|
|
|
|
let some = Some(8i16);
|
|
|
|
let none: Option<i64> = None;
|
|
|
|
|
2017-06-01 13:26:09 -05:00
|
|
|
let some_string = Some("IAMA optional string!".to_owned());
|
|
|
|
|
2015-03-12 11:05:44 -05:00
|
|
|
zzz(); // #break
|
|
|
|
}
|
|
|
|
|
|
|
|
fn zzz() { () }
|