add an option for a custom differ

This commit is contained in:
Orion Gonzalez 2024-10-03 03:15:32 +02:00
parent bca5fdebe0
commit 73238301f4
2 changed files with 3 additions and 0 deletions

View File

@ -387,6 +387,8 @@ pub struct Config {
/// True if the profiler runtime is enabled for this target.
/// Used by the "needs-profiler-runtime" directive in test files.
pub profiler_runtime: bool,
pub diff_command: Option<String>,
}
impl Config {

View File

@ -364,6 +364,7 @@ fn make_absolute(path: PathBuf) -> PathBuf {
git_merge_commit_email: matches.opt_str("git-merge-commit-email").unwrap(),
profiler_runtime: matches.opt_present("profiler-runtime"),
diff_command: env::var("COMPILETEST_DIFF_TOOL").ok(),
}
}