|
3 | 3 | use crate::common::CompareMode;
|
4 | 4 | use crate::common::{expected_output_path, UI_EXTENSIONS, UI_FIXED, UI_STDERR, UI_STDOUT};
|
5 | 5 | use crate::common::{output_base_dir, output_base_name, output_testname_unique};
|
6 |
| -use crate::common::{Codegen, CodegenUnits, DebugInfoCdb, DebugInfoGdbLldb, DebugInfoGdb, DebugInfoLldb, Rustdoc}; |
| 6 | +use crate::common::{Codegen, CodegenUnits, Rustdoc}; |
| 7 | +use crate::common::{DebugInfoCdb, DebugInfoGdbLldb, DebugInfoGdb, DebugInfoLldb}; |
7 | 8 | use crate::common::{CompileFail, Pretty, RunFail, RunPass, RunPassValgrind};
|
8 | 9 | use crate::common::{Config, TestPaths};
|
9 | 10 | use crate::common::{Incremental, MirOpt, RunMake, Ui, JsDocTest, Assembly};
|
@@ -709,7 +710,7 @@ impl<'test> TestCx<'test> {
|
709 | 710 | // https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/debugger-commands
|
710 | 711 | let mut script_str = String::with_capacity(2048);
|
711 | 712 | script_str.push_str("version\n"); // List CDB (and more) version info in test output
|
712 |
| - script_str.push_str(".nvlist\n"); // List loaded `*.natvis` files (bulk of MSVC debugger customizations) |
| 713 | + script_str.push_str(".nvlist\n"); // List loaded `*.natvis` files, bulk of custom MSVC debug |
713 | 714 |
|
714 | 715 | // Set breakpoints on every line that contains the string "#break"
|
715 | 716 | let source_file_name = self.testpaths.file.file_name().unwrap().to_string_lossy();
|
@@ -1968,8 +1969,8 @@ impl<'test> TestCx<'test> {
|
1968 | 1969 |
|
1969 | 1970 | rustc.arg(dir_opt);
|
1970 | 1971 | }
|
1971 |
| - RunFail | RunPassValgrind | Pretty | DebugInfoCdb | DebugInfoGdbLldb | DebugInfoGdb | DebugInfoLldb |
1972 |
| - | Codegen | Rustdoc | RunMake | CodegenUnits | JsDocTest | Assembly => { |
| 1972 | + RunFail | RunPassValgrind | Pretty | DebugInfoCdb | DebugInfoGdbLldb | DebugInfoGdb |
| 1973 | + | DebugInfoLldb | Codegen | Rustdoc | RunMake | CodegenUnits | JsDocTest | Assembly => { |
1973 | 1974 | // do not use JSON output
|
1974 | 1975 | }
|
1975 | 1976 | }
|
|
0 commit comments