diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2019-07-07 22:34:53 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-08-30 02:59:13 -0300 |
commit | 6c8381ba967cd3842484965f3f7c1200a42a5539 (patch) | |
tree | f2f504337d74d67be7ecd204e8d3ec531139b602 /community/rust/cargo-skip-broken-tests.patch | |
parent | 7184ba0dd972247e83d1e0204c1f43c247ad84e5 (diff) | |
download | aports-6c8381ba967cd3842484965f3f7c1200a42a5539.tar.bz2 aports-6c8381ba967cd3842484965f3f7c1200a42a5539.tar.xz |
community/rust: upgrade to 1.37.0, enable on aarch64&x86 again
Use upstream triplets for now, rust doesn't seem to want to work with our
triplets...
See https://github.com/rust-lang/rust/issues/62447
Diffstat (limited to 'community/rust/cargo-skip-broken-tests.patch')
-rw-r--r-- | community/rust/cargo-skip-broken-tests.patch | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/community/rust/cargo-skip-broken-tests.patch b/community/rust/cargo-skip-broken-tests.patch deleted file mode 100644 index 425d69d846..0000000000 --- a/community/rust/cargo-skip-broken-tests.patch +++ /dev/null @@ -1,60 +0,0 @@ -diff --git a/src/tools/cargo/tests/testsuite/new.rs b/src/tools/cargo/tests/testsuite/new.rs.new -index 52e327e36c..416ff58671 100644 ---- a/src/tools/cargo/tests/testsuite/new.rs -+++ b/src/tools/cargo/tests/testsuite/new.rs.new -@@ -154,6 +154,7 @@ fn keyword_name() { - ).run(); - } - -+#[ignore] - #[test] - fn finds_author_user() { - create_empty_gitconfig(); -@@ -168,6 +169,7 @@ fn finds_author_user() { - assert!(contents.contains(r#"authors = ["foo"]"#)); - } - -+#[ignore] - #[test] - fn finds_author_user_escaped() { - create_empty_gitconfig(); -@@ -182,6 +184,7 @@ fn finds_author_user_escaped() { - assert!(contents.contains(r#"authors = ["foo \"bar\""]"#)); - } - -+#[ignore] - #[test] - fn finds_author_username() { - create_empty_gitconfig(); -@@ -217,6 +220,7 @@ fn finds_author_priority() { - assert!(contents.contains(r#"authors = ["bar <baz>"]"#)); - } - -+#[ignore] - #[test] - fn finds_author_email() { - create_empty_gitconfig(); -@@ -234,6 +238,7 @@ fn finds_author_email() { - assert!(contents.contains(r#"authors = ["bar <baz>"]"#)); - } - -+#[ignore] - #[test] - fn finds_author_git() { - git_process("config --global user.name bar").exec().unwrap(); -@@ -289,6 +294,7 @@ fn finds_git_email() { - assert!(contents.contains(r#"authors = ["foo <gitfoo>"]"#), contents); - } - -+#[ignore] - #[test] - fn finds_git_author() { - create_empty_gitconfig(); -@@ -337,6 +343,7 @@ fn author_prefers_cargo() { - assert!(!root.join("foo/.gitignore").exists()); - } - -+#[ignore] - #[test] - fn strip_angle_bracket_author_email() { - create_empty_gitconfig(); |