Remove redundant cli_testing_examples folder

This commit is contained in:
Jonathan Schear 2024-03-05 18:37:03 -05:00
parent 813b0010b7
commit 0b6cf5cbcc
No known key found for this signature in database
GPG key ID: 0F4D841667534076
36 changed files with 38 additions and 19 deletions

View file

@ -404,7 +404,7 @@ pub fn extract_valgrind_errors(xml: &str) -> Result<Vec<ValgrindError>, serde_xm
Ok(answer)
}
// start the dir with crates/cli_testing_examples
// start the dir with crates/cli/tests
#[allow(dead_code)]
pub fn cli_testing_dir(dir_name: &str) -> PathBuf {
let mut path = root_dir();
@ -413,7 +413,6 @@ pub fn cli_testing_dir(dir_name: &str) -> PathBuf {
path.push("crates");
path.push("cli");
path.push("tests");
path.push("cli_testing_examples");
path.extend(dir_name.split('/')); // Make slashes cross-target
path