]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - tools/testing/ktest/compare-ktest-sample.pl
Merge remote-tracking branches 'asoc/topic/ac97', 'asoc/topic/ac97-mfd', 'asoc/topic...
[mirror_ubuntu-focal-kernel.git] / tools / testing / ktest / compare-ktest-sample.pl
CommitLineData
dbc6d0aa 1#!/usr/bin/perl
b2441318 2# SPDX-License-Identifier: GPL-2.0
dbc6d0aa
SR
3
4open (IN,"ktest.pl");
5while (<IN>) {
c2857cb4 6 # hashes are now used
dbc6d0aa 7 if (/\$opt\{"?([A-Z].*?)(\[.*\])?"?\}/ ||
c2857cb4 8 /^\s*"?([A-Z].*?)"?\s*=>\s*/ ||
dbc6d0aa
SR
9 /set_test_option\("(.*?)"/) {
10 $opt{$1} = 1;
11 }
12}
13close IN;
14
15open (IN, "sample.conf");
16while (<IN>) {
c2857cb4 17 if (/^\s*#?\s*([A-Z]\S*)\s*=/) {
dbc6d0aa
SR
18 $samp{$1} = 1;
19 }
20}
21close IN;
22
23foreach $opt (keys %opt) {
24 if (!defined($samp{$opt})) {
25 print "opt = $opt\n";
26 }
27}
28
29foreach $samp (keys %samp) {
30 if (!defined($opt{$samp})) {
31 print "samp = $samp\n";
32 }
33}