Auto merge of #46922 - kennytm:rollup, r=kennytm
Rollup of 14 pull requests - Successful merges: #46636, #46780, #46784, #46809, #46814, #46820, #46839, #46847, #46858, #46878, #46884, #46890, #46898, #46918 - Failed merges:
This commit is contained in:
commit
ba2741594b
40 changed files with 453 additions and 329 deletions
|
|
@ -3720,9 +3720,10 @@ fn sidebar_assoc_items(it: &clean::Item) -> String {
|
|||
})).and_then(|did| c.impls.get(&did));
|
||||
if let Some(impls) = inner_impl {
|
||||
out.push_str("<a class=\"sidebar-title\" href=\"#deref-methods\">");
|
||||
out.push_str(&format!("Methods from {:#}<Target={:#}>",
|
||||
impl_.inner_impl().trait_.as_ref().unwrap(),
|
||||
target));
|
||||
out.push_str(&format!("Methods from {}<Target={}>",
|
||||
Escape(&format!("{:#}",
|
||||
impl_.inner_impl().trait_.as_ref().unwrap())),
|
||||
Escape(&format!("{:#}", target))));
|
||||
out.push_str("</a>");
|
||||
let ret = impls.iter()
|
||||
.filter(|i| i.inner_impl().trait_.is_none())
|
||||
|
|
|
|||
|
|
@ -263,7 +263,7 @@ fn run_test(test: &str, cratename: &str, filename: &FileName, cfgs: Vec<String>,
|
|||
}
|
||||
|
||||
let res = panic::catch_unwind(AssertUnwindSafe(|| {
|
||||
driver::compile_input(&sess, &cstore, &input, &out, &None, None, &control)
|
||||
driver::compile_input(&sess, &cstore, &None, &input, &out, &None, None, &control)
|
||||
}));
|
||||
|
||||
let compile_result = match res {
|
||||
|
|
@ -533,7 +533,7 @@ impl Collector {
|
|||
should_panic: testing::ShouldPanic::No,
|
||||
allow_fail,
|
||||
},
|
||||
testfn: testing::DynTestFn(box move |()| {
|
||||
testfn: testing::DynTestFn(box move || {
|
||||
let panic = io::set_panic(None);
|
||||
let print = io::set_print(None);
|
||||
match {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue