2 # Copyright 2002 Patrik Stridvall
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 use vars
qw($VERSION @ISA @EXPORT @EXPORT_OK);
28 @EXPORT_OK = qw($tests);
32 use config qw($current_dir $wine_dir $winapi_dir);
33 use options qw($options);
34 use output qw($output);
37 $Exporter::ExportLevel++;
39 $Exporter::ExportLevel--;
41 $tests = 'tests'->new;
44 sub parse_tests_file($);
48 my $class = ref($proto) || $proto;
50 bless ($self, $class);
52 $self->parse_tests_file();
57 sub parse_tests_file($) {
60 my $file = "tests.dat";
62 my $tests = \%{$self->{TESTS}};
64 $output->lazy_progress($file);
70 open(IN, "< $winapi_dir/$file") || die "$winapi_dir/$file: $!\n";
72 s/^\s*?(.*?)\s*$/$1/; # remove whitespace at beginning and end of line
73 s/^(.*?)\s*#.*$/$1/; # remove comments
74 /^$/ && next; # skip empty lines
76 if (/^%%%\s*(\S+)$/) {
78 } elsif (/^%%\s*(\w+)$/) {
80 } elsif (/^%\s*(\w+)$/) {
83 if (!exists($$tests{$test_dir}{$test}{$section})) {
84 $$tests{$test_dir}{$test}{$section} = [];
86 push @{$$tests{$test_dir}{$test}{$section}}, $_;
88 $output->write("$file:$.: parse error: '$_'\n");
98 my $tests = \%{$self->{TESTS}};
100 my $test_dir = shift;
103 if (defined($test_dir)) {
104 foreach my $test (sort(keys(%{$$tests{$test_dir}}))) {
108 foreach my $test_dir (sort(keys(%$tests))) {
109 foreach my $test (sort(keys(%{$$tests{$test_dir}}))) {
114 return sort(keys(%tests));
117 sub get_test_dirs($$) {
120 my $tests = \%{$self->{TESTS}};
125 if (defined($test)) {
126 foreach my $test_dir (sort(keys(%$tests))) {
127 if (exists($$tests{$test_dir}{$test})) {
128 $test_dirs{$test_dir}++;
132 foreach my $test_dir (sort(keys(%$tests))) {
133 $test_dirs{$test_dir}++;
137 return sort(keys(%test_dirs));
140 sub get_sections($$$) {
143 my $tests = \%{$self->{TESTS}};
145 my $test_dir = shift;
149 if (defined($test_dir)) {
150 if (defined($test)) {
151 foreach my $section (sort(keys(%{$$tests{$test_dir}{$test}}))) {
152 $sections{$section}++;
155 foreach my $test (sort(keys(%{$$tests{$test_dir}}))) {
156 foreach my $section (sort(keys(%{$$tests{$test_dir}{$test}}))) {
157 $sections{$section}++;
161 } elsif (defined($test)) {
162 foreach my $test_dir (sort(keys(%$tests))) {
163 foreach my $section (sort(keys(%{$$tests{$test_dir}{$test}}))) {
164 $sections{$section}++;
168 foreach my $test_dir (sort(keys(%$tests))) {
169 foreach my $test (sort(keys(%{$$tests{$test_dir}}))) {
170 foreach my $section (sort(keys(%{$$tests{$test_dir}{$test}}))) {
171 $sections{$section}++;
177 return sort(keys(%sections));
180 sub get_section($$$$) {
183 my $tests = \%{$self->{TESTS}};
185 my $test_dir = shift;
189 my $array = $$tests{$test_dir}{$test}{$section};
190 if (defined($array)) {