ChangeLog: https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1460-2020-08-27 Announce: https://blog.rust-lang.org/2020/08/27/Rust-1.46.0.html ok landry@
16 lines
466 B
Plaintext
16 lines
466 B
Plaintext
$OpenBSD: patch-src_bootstrap_test_rs,v 1.12 2020/08/27 17:24:57 semarie Exp $
|
|
Disable "Bootstrap" test by default (it requires network).
|
|
|
|
Index: src/bootstrap/test.rs
|
|
--- src/bootstrap/test.rs.orig
|
|
+++ src/bootstrap/test.rs
|
|
@@ -1998,7 +1998,7 @@ pub struct Bootstrap;
|
|
|
|
impl Step for Bootstrap {
|
|
type Output = ();
|
|
- const DEFAULT: bool = true;
|
|
+ const DEFAULT: bool = false;
|
|
const ONLY_HOSTS: bool = true;
|
|
|
|
/// Tests the build system itself.
|