forked from servo/rustc-test
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't name the crate "test" #3
Comments
Actually, the fact that this works at all really should be a crates.io bug. |
Manishearth
added a commit
to Manishearth/rustc-test
that referenced
this issue
Nov 18, 2019
This was referenced Nov 18, 2019
Closed
bors
added a commit
to rust-lang/rust-clippy
that referenced
this issue
Nov 19, 2019
Rustup to rustc 1.41.0-nightly (a0d40f8 2019-11-18) I don't have the right fix for the fmtstr tests, and I'm also hitting problems caused by messense/rustc-test#3 changelog: none
bors
added a commit
to rust-lang/rust-clippy
that referenced
this issue
Nov 23, 2019
Rustup to rustc 1.41.0-nightly (35ef33a 2019-11-21) I don't have the right fix for the fmtstr tests, and I'm also hitting problems caused by messense/rustc-test#3 List of rustups: - rust-lang/rust#66271 (syntax: Keep string literals in ABIs and `asm!` more precisely) - rust-lang/rust#65355 (Stabilize `!` in Rust 1.41.0) - rust-lang/rust#66515 (Reduce size of `hir::Expr` by boxing more of `hir::InlineAsm`) - rust-lang/rust#66389 (Specific labels when referring to "expected" and "found" types) - rust-lang/rust#66074 ([mir-opt] Turn on the `ConstProp` pass by default) changelog: none
bors
added a commit
to rust-lang/rust-clippy
that referenced
this issue
Nov 23, 2019
Rustup to rustc 1.41.0-nightly (35ef33a 2019-11-21) I don't have the right fix for the fmtstr tests, and I'm also hitting problems caused by messense/rustc-test#3 List of rustups: - rust-lang/rust#66271 (syntax: Keep string literals in ABIs and `asm!` more precisely) - rust-lang/rust#65355 (Stabilize `!` in Rust 1.41.0) - rust-lang/rust#66515 (Reduce size of `hir::Expr` by boxing more of `hir::InlineAsm`) - rust-lang/rust#66389 (Specific labels when referring to "expected" and "found" types) - rust-lang/rust#66074 ([mir-opt] Turn on the `ConstProp` pass by default) changelog: none
bors
added a commit
to rust-lang/rust-clippy
that referenced
this issue
Nov 23, 2019
Rustup to rustc 1.41.0-nightly (35ef33a 2019-11-21) I don't have the right fix for the fmtstr tests, and I'm also hitting problems caused by messense/rustc-test#3 List of rustups: - rust-lang/rust#66271 (syntax: Keep string literals in ABIs and `asm!` more precisely) - rust-lang/rust#65355 (Stabilize `!` in Rust 1.41.0) - rust-lang/rust#66515 (Reduce size of `hir::Expr` by boxing more of `hir::InlineAsm`) - rust-lang/rust#66389 (Specific labels when referring to "expected" and "found" types) - rust-lang/rust#66074 ([mir-opt] Turn on the `ConstProp` pass by default) changelog: none
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently the actual crate library is named "test", which is confusing since there's a builtin crate of the same name.
Furthermore, the builtin crate is always loaded, so this conflicts with it and can cause "multiple matching crates found" errors at times. We should avoid that. Perhaps we can just call it
tester
?The text was updated successfully, but these errors were encountered: