File tree Expand file tree Collapse file tree 4 files changed +27
-0
lines changed
Expand file tree Collapse file tree 4 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 1+ WARNING: You might not want to use this outside of Cargo.
2+
3+ * This is designed for testing Cargo itself. Use at your own risk.
4+ * No guarantee on any stability across versions.
5+ * No feature request would be accepted unless proved useful for testing Cargo.
Original file line number Diff line number Diff line change 1+ //! # Cargo test macro.
2+ //!
3+ //! This is meant to be consumed alongside `cargo-test-support`. See
4+ //! <https://rust-lang.github.io/cargo/contrib/> for a guide on writing tests.
5+ //!
6+ //! WARNING: You might not want to use this outside of Cargo.
7+ //!
8+ //! * This is designed for testing Cargo itself. Use at your own risk.
9+ //! * No guarantee on any stability across versions.
10+ //! * No feature request would be accepted unless proved useful for testing Cargo.
11+
112use proc_macro:: * ;
213use std:: path:: Path ;
314use std:: process:: Command ;
Original file line number Diff line number Diff line change 1+ WARNING: You might not want to use this outside of Cargo.
2+
3+ * This is designed for testing Cargo itself. Use at your own risk.
4+ * No guarantee on any stability across versions.
5+ * No feature request would be accepted unless proved useful for testing Cargo.
Original file line number Diff line number Diff line change 11//! # Cargo test support.
22//!
33//! See <https://rust-lang.github.io/cargo/contrib/> for a guide on writing tests.
4+ //!
5+ //! WARNING: You might not want to use this outside of Cargo.
6+ //!
7+ //! * This is designed for testing Cargo itself. Use at your own risk.
8+ //! * No guarantee on any stability across versions.
9+ //! * No feature request would be accepted unless proved useful for testing Cargo.
410
511#![ allow( clippy:: disallowed_methods) ]
612#![ allow( clippy:: print_stderr) ]
You can’t perform that action at this time.
0 commit comments