mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 01:46:41 +07:00
ktest.pl: Use diffconfig if available for failed config bisects
Check to see if diffconfig is available and use that to diff the configs instead of using 'diff -u', as diffconfig produces much better output of kernel config files. It checks the source directory for the executable. Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
This commit is contained in:
parent
b337f9790a
commit
b2b07ea282
@ -3114,10 +3114,14 @@ sub run_config_bisect_test {
|
||||
|
||||
sub config_bisect_end {
|
||||
my ($good, $bad) = @_;
|
||||
my $diffexec = "diff -u";
|
||||
|
||||
if (-f "$builddir/scripts/diffconfig") {
|
||||
$diffexec = "$builddir/scripts/diffconfig";
|
||||
}
|
||||
doprint "\n\n***************************************\n";
|
||||
doprint "No more config bisecting possible.\n";
|
||||
doprint `diff -u $good $bad`;
|
||||
run_command "$diffexec $good $bad", 1;
|
||||
doprint "***************************************\n\n";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user