diff options
author | Steven Rostedt <srostedt@redhat.com> | 2010-11-08 17:18:37 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2010-11-18 11:23:11 -0500 |
commit | dbc6d0aa8ae38cf9cfe39c6076cc5378ef4ca4a2 (patch) | |
tree | 5502a7b87989c6e95a31eba6abc1cb16225b34e3 /tools/testing | |
parent | 0a05c769a9de554aefa773061c592c7054d5e7a0 (diff) | |
download | linux-3.10-dbc6d0aa8ae38cf9cfe39c6076cc5378ef4ca4a2.tar.gz linux-3.10-dbc6d0aa8ae38cf9cfe39c6076cc5378ef4ca4a2.tar.bz2 linux-3.10-dbc6d0aa8ae38cf9cfe39c6076cc5378ef4ca4a2.zip |
ktest: Added compare script to test ktest.pl to sample.conf
Add a compare script that makes sure that all the options in
sample.conf are used in ktest.pl, and all the options in
ktest.pl are described in sample.conf.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'tools/testing')
-rwxr-xr-x | tools/testing/ktest/compare-ktest-sample.pl | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tools/testing/ktest/compare-ktest-sample.pl b/tools/testing/ktest/compare-ktest-sample.pl new file mode 100755 index 00000000000..9a571e71683 --- /dev/null +++ b/tools/testing/ktest/compare-ktest-sample.pl @@ -0,0 +1,30 @@ +#!/usr/bin/perl + +open (IN,"ktest.pl"); +while (<IN>) { + if (/\$opt\{"?([A-Z].*?)(\[.*\])?"?\}/ || + /set_test_option\("(.*?)"/) { + $opt{$1} = 1; + } +} +close IN; + +open (IN, "sample.conf"); +while (<IN>) { + if (/^\s*#?\s*(\S+)\s*=/) { + $samp{$1} = 1; + } +} +close IN; + +foreach $opt (keys %opt) { + if (!defined($samp{$opt})) { + print "opt = $opt\n"; + } +} + +foreach $samp (keys %samp) { + if (!defined($opt{$samp})) { + print "samp = $samp\n"; + } +} |