summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds2012-10-01 19:13:47 +0200
committerLinus Torvalds2012-10-01 19:13:47 +0200
commit6977b4c7736e8809b7959c66875a16c0bbcf2152 (patch)
tree4063167be935320f13c56f4495af1d05312cfff8
parentMerge tag 'localmodconfig-v3.7-2' of git://git.kernel.org/pub/scm/linux/kerne... (diff)
parentktest: Fix ELSE IF statements (diff)
downloadkernel-qcow2-linux-6977b4c7736e8809b7959c66875a16c0bbcf2152.tar.gz
kernel-qcow2-linux-6977b4c7736e8809b7959c66875a16c0bbcf2152.tar.xz
kernel-qcow2-linux-6977b4c7736e8809b7959c66875a16c0bbcf2152.zip
Merge tag 'ktest-v3.7' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-ktest
Pull ktest fix from Steven Rostedt: "ktest has one fix needed for this merge window - fix parsing of ELSE IF in reading config file" * tag 'ktest-v3.7' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-ktest: ktest: Fix ELSE IF statements
-rwxr-xr-xtools/testing/ktest/ktest.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl
index 52b7959cd513..c05bcd293d8c 100755
--- a/tools/testing/ktest/ktest.pl
+++ b/tools/testing/ktest/ktest.pl
@@ -840,7 +840,9 @@ sub __read_config {
if ($rest =~ /\sIF\s+(.*)/) {
# May be a ELSE IF section.
- if (!process_if($name, $1)) {
+ if (process_if($name, $1)) {
+ $if_set = 1;
+ } else {
$skip = 1;
}
$rest = "";