* Add known external tests * Add some documentation to the tests * Document test_hello example * Set PWD in run_test
7 lines
174 B
Rust
7 lines
174 B
Rust
/// This function is only meant to be used as part of the test suite
|
|
/// as a simple, cross-platform executable with known output.
|
|
|
|
fn main() {
|
|
println!("test-hello");
|
|
}
|