Add support for a "working-directory" parameter

This commit updates the tests to check that this works and also rewrites the
test script from Bash to Perl.

Co-authored-by: Dave Rolsky <autarch@urth.org>
This commit is contained in:
aaronvg
2023-09-03 16:25:13 -07:00
committed by Dave Rolsky
parent 77a5caf54b
commit 42fe96a4c1
14 changed files with 5248 additions and 72 deletions

7
test-project/subcrate/Cargo.lock generated Normal file
View File

@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "subcrate"
version = "0.1.0"

View File

@@ -0,0 +1,8 @@
[package]
name = "subcrate"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world (subcrate)!");
}