File tree 4 files changed +27
-0
lines changed
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
+
1
12
use proc_macro:: * ;
2
13
use std:: path:: Path ;
3
14
use 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 1
1
//! # Cargo test support.
2
2
//!
3
3
//! 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.
4
10
5
11
#![ allow( clippy:: disallowed_methods) ]
6
12
#![ allow( clippy:: print_stderr) ]
You can’t perform that action at this time.
0 commit comments