forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#97887 - matthiaskrgr:rollup-ym5k7kb, r=matthi…
…askrgr Rollup of 5 pull requests Successful merges: - rust-lang#97507 (Move rustfmt downloads from bootstrap.py to rustbuild) - rust-lang#97813 (Sync rustc_codegen_gcc) - rust-lang#97878 (Add regression test for anonymous lifetimes) - rust-lang#97879 (remove unneeded code) - rust-lang#97880 (Fix typo: fo->for) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
52 changed files
with
8,218 additions
and
733 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
disable_all_formatting = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
#!/usr/bin/env bash | ||
|
||
# Requires the CHANNEL env var to be set to `debug` or `release.` | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
compiler/rustc_codegen_gcc/build_sysroot/prepare_sysroot_src.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
#!/usr/bin/env bash | ||
set -e | ||
cd $(dirname "$0") | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#!/bin/bash --verbose | ||
#!/usr/bin/env bash | ||
set -e | ||
set -v | ||
|
||
rm -rf target/ build_sysroot/{sysroot/,sysroot_src/,target/,Cargo.lock} perf.data{,.old} | ||
rm -rf regex/ simple-raytracer/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
compiler/rustc_codegen_gcc/crate_patches/0002-rand-Disable-failing-test.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
From a8fb97120d71252538b6b026695df40d02696bdb Mon Sep 17 00:00:00 2001 | ||
From: bjorn3 <bjorn3@users.noreply.github.com> | ||
Date: Sat, 15 Aug 2020 20:04:38 +0200 | ||
Subject: [PATCH] [rand] Disable failing test | ||
|
||
--- | ||
src/distributions/uniform.rs | 3 ++- | ||
1 file changed, 2 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/src/distributions/uniform.rs b/src/distributions/uniform.rs | ||
index 480b859..c80bb6f 100644 | ||
--- a/src/distributions/uniform.rs | ||
+++ b/src/distributions/uniform.rs | ||
@@ -1085,7 +1085,7 @@ mod tests { | ||
_ => panic!("`UniformDurationMode` was not serialized/deserialized correctly") | ||
} | ||
} | ||
- | ||
+ | ||
#[test] | ||
#[cfg(feature = "serde1")] | ||
fn test_uniform_serialization() { | ||
@@ -1314,6 +1314,7 @@ mod tests { | ||
not(target_arch = "wasm32"), | ||
not(target_arch = "asmjs") | ||
))] | ||
+ #[ignore] // FIXME | ||
fn test_float_assertions() { | ||
use super::SampleUniform; | ||
use std::panic::catch_unwind; | ||
-- | ||
2.20.1 |
Oops, something went wrong.