WIP: generalize for Gerrit / Floral #3

Draft
raito wants to merge 33 commits from vcs-generalization into main
Showing only changes of commit 0af623a929 - Show all commits

View file

@ -427,14 +427,18 @@ mod tests {
}
fn make_pr_repo(bare: &Path, co: &Path) -> String {
let output = Command::new("bash")
.current_dir(tpath("./test-srcs"))
let mut cmd = Command::new("bash");
cmd.current_dir(tpath("./test-srcs"))
.arg("make-change.sh")
.arg(bare)
.arg(co)
.stderr(Stdio::null())
.stdout(Stdio::piped())
.output()
.stdout(Stdio::piped());
assert!(cmd.status().unwrap().success());
let output = cmd.output()
.expect("building the test PR failed");
let hash = String::from_utf8(output.stdout).expect("Should just be a hash");