Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'ktest-v6.19' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-ktest

Pull ktest fix from Steven Rostedt:

- Fix incorrect variable in error message in config-bisect.pl

If the old config file fails to get copied as the last good or bad
config file, then it fails the program and prints an error message.

But the variable used to print what the old config's name was
incorrect. It was $config when it should have been $output_config.

* tag 'ktest-v6.19' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-ktest:
ktest.pl: Fix uninitialized var in config-bisect.pl

+2 -2
+2 -2
tools/testing/ktest/config-bisect.pl
··· 741 741 die "Can not find file $bad\n"; 742 742 } 743 743 if ($val eq "good") { 744 - run_command "cp $output_config $good" or die "failed to copy $config to $good\n"; 744 + run_command "cp $output_config $good" or die "failed to copy $output_config to $good\n"; 745 745 } elsif ($val eq "bad") { 746 - run_command "cp $output_config $bad" or die "failed to copy $config to $bad\n"; 746 + run_command "cp $output_config $bad" or die "failed to copy $output_config to $bad\n"; 747 747 } 748 748 } 749 749