Add wcstof()/wcstold() documentation (from NetBSD).
[dragonfly.git] / lib / libc_r / test / verify
blob8333c818015d003b19faacc1f06576bcdce44f41
1 #!/usr/pkg/bin/perl -w
2 #-*-mode:perl-*-
3 #############################################################################
5 # Copyright (C) 1999-2001 Jason Evans <jasone@freebsd.org>.
6 # All rights reserved.
7 #
8 # Redistribution and use in source and binary forms, with or without
9 # modification, are permitted provided that the following conditions
10 # are met:
11 # 1. Redistributions of source code must retain the above copyright
12 # notice(s), this list of conditions and the following disclaimer as
13 # the first lines of this file unmodified other than the possible
14 # addition of one or more copyright notices.
15 # 2. Redistributions in binary form must reproduce the above copyright
16 # notice(s), this list of conditions and the following disclaimer in
17 # the documentation and/or other materials provided with the
18 # distribution.
20 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY
21 # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE
24 # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
27 # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28 # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
29 # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30 # EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 #############################################################################
34 # Test harness.
36 # $FreeBSD: src/lib/libc_r/test/verify,v 1.1.2.2 2001/06/22 21:44:27 jasone Exp $
37 # $DragonFly: src/lib/libc_r/test/verify,v 1.2 2003/06/17 04:26:48 dillon Exp $
39 #############################################################################
41 # Shut off buffering.
42 select(STDOUT);
43 $| = 1;
46 # Parse command-line arguments.
48 use Getopt::Long;
49 Getopt::Long::config("bundling"); # Allow -hv rather than forcing -h -v.
51 # Set option defaults for optional arguments.
52 $opt_help = 0;
53 $opt_verbose = 0;
54 $opt_quiet = 0;
55 $opt_srcdir = ".";
56 $opt_objdir = ".";
57 $opt_ustats = 0;
58 $opt_zero = 0;
60 $opt_retval =
61 &GetOptions("h|help" => \$opt_help,
62 "v|verbose" => \$opt_verbose,
63 "q|quiet" => \$opt_quiet,
64 "s|srcdir=s" => \$opt_srcdir,
65 "o|objdir=s" => \$opt_objdir,
66 "u|ustats" => \$opt_ustats,
67 "z|zero" => \$opt_zero
70 if ($opt_help)
72 &usage();
73 exit(0);
76 if ($opt_retval == 0)
78 &usage();
79 exit 1;
82 if ($opt_verbose && $opt_quiet)
84 print STDERR "-v and -q are incompatible\n";
85 &usage();
86 exit 1;
89 if ($#ARGV + 1 == 0)
91 print STDERR "No tests specified\n";
92 &usage();
93 exit 1;
96 if ($opt_verbose)
98 print STDERR "Option values: h:$opt_help, v:$opt_verbose, "
99 . "s:\"$opt_srcdir\", o:\"$opt_objdir\" "
100 . "q:$opt_quiet, u:$opt_ustats, z:$opt_zero\n";
101 printf STDERR "Tests (%d total): @ARGV\n", $#ARGV + 1;
105 # Create and print header.
107 @TSTATS =
109 "--------------------------------------------------------------------------\n",
110 "Test c_user c_system c_total chng\n",
111 " passed/FAILED h_user h_system h_total %% chng\n"
114 if (!$opt_quiet)
116 foreach $line (@TSTATS)
118 printf STDOUT "$line";
123 # Run sequence test(s).
125 $total_utime = 0.0; # Total user time.
126 $total_stime = 0.0; # Total system time.
127 $total_hutime = 0.0; # Total historical user time.
128 $total_hstime = 0.0; # Total historical system time.
129 $total_ntime = 0.0; # Total time for tests that have historical data.
131 foreach $test (@ARGV)
133 # Strip out any whitespace in $test.
134 $test =~ s/^\s*(.*)\s*$/$1/;
136 $okay = 1;
138 if (-e "$opt_srcdir/$test.exp")
140 # Diff mode.
142 ($okay, $utime, $stime) = &run_test($test);
144 if (-e "$opt_objdir/$test.out")
146 `diff $opt_srcdir/$test.exp $opt_objdir/$test.out > $opt_objdir/$test.diff 2>&1`;
147 if ($?)
149 # diff returns non-zero if there is a difference.
150 $okay = 0;
153 else
155 $okay = 0;
156 if ($opt_verbose)
158 print STDERR
159 "Nonexistent output file \"$opt_objdir/$test.out\"\n";
163 ($hutime, $hstime) = &print_stats($test, $okay, 0, 0, $utime, $stime);
165 else
167 # Sequence mode.
169 ($okay, $utime, $stime) = &run_test($test);
171 if (open (STEST_OUT, "<$opt_objdir/$test.out"))
173 $num_subtests = 0;
174 $num_failed_subtests = 0;
176 while (defined($line = <STEST_OUT>))
178 if ($line =~ /1\.\.(\d+)/)
180 $num_subtests = $1;
181 last;
184 if ($num_subtests == 0)
186 $okay = 0;
187 if ($opt_verbose)
189 print STDERR "Malformed or missing 1..n line\n";
192 else
194 for ($subtest = 1; $subtest <= $num_subtests; $subtest++)
196 while (defined($line = <STEST_OUT>))
198 if ($line =~ /^not\s+ok\s+(\d+)?/)
200 $not = 1;
201 $test_num = $1;
202 last;
204 elsif ($line =~ /^ok\s+(\d+)?/)
206 $not = 0;
207 $test_num = $1;
208 last;
211 if (defined($line))
213 if (defined($test_num) && ($test_num != $subtest))
215 # There was no output printed for one or more tests.
216 for (; $subtest < $test_num; $subtest++)
218 $num_failed_subtests++;
221 if ($not)
223 $num_failed_subtests++;
226 else
228 for (; $subtest <= $num_subtests; $subtest++)
230 $num_failed_subtests++;
235 if (0 < $num_failed_subtests)
237 $okay = 0;
241 else
243 if (!$opt_quiet)
245 print STDERR "Cannot open output file \"$opt_objdir/$test.out\"\n";
247 exit 1;
250 ($hutime, $hstime) = &print_stats($test, $okay,
251 $num_failed_subtests, $num_subtests,
252 $utime, $stime);
255 $total_hutime += $hutime;
256 $total_hstime += $hstime;
258 if ($okay)
260 $total_utime += $utime;
261 $total_stime += $stime;
263 else
265 @FAILED_TESTS = (@FAILED_TESTS, $test);
268 # If there were historical data, add the run time to the total time to
269 # compare against the historical run time.
270 if (0 < ($hutime + $hstime))
272 $total_ntime += $utime + $stime;
276 # Print summary stats.
277 $tt_str = sprintf ("%d / %d passed (%5.2f%%%%)",
278 ($#ARGV + 1) - ($#FAILED_TESTS + 1),
279 $#ARGV + 1,
280 (($#ARGV + 1) - ($#FAILED_TESTS + 1))
281 / ($#ARGV + 1) * 100);
283 $t_str = sprintf ("Totals %7.2f %7.2f %7.2f"
284 . " %7.2f\n"
285 . " %s %7.2f %7.2f %7.2f %7.2f%%%%\n",
286 $total_utime, $total_stime, $total_utime + $total_stime,
287 ($total_ntime - ($total_hutime + $total_hstime)),
288 $tt_str . ' ' x (40 - length($tt_str)),
289 $total_hutime, $total_hstime, $total_hutime + $total_hstime,
290 ($total_hutime + $total_hstime == 0.0) ? 0.0 :
291 (($total_ntime
292 - ($total_hutime + $total_hstime))
293 / ($total_hutime + $total_hstime) * 100));
295 @TSTATS = ("--------------------------------------------------------------------------\n",
296 $t_str,
297 "--------------------------------------------------------------------------\n"
299 if (!$opt_quiet)
301 foreach $line (@TSTATS)
303 printf STDOUT "$line";
307 if ($#FAILED_TESTS >= 0)
309 # One or more tests failed, so return an error.
310 exit 1;
312 # End of main execution.
314 sub run_test
316 my ($test) = @_;
317 my ($okay) = 1;
318 my ($tutime, $tstime);
319 my ($utime, $stime, $cutime, $cstime);
320 my (@TSTATS, @TPATH);
321 my ($t_str);
322 my ($srcdir, $objdir);
324 # Get the path component of $test, if any.
325 @TPATH = split(/\//, $test);
326 pop(@TPATH);
327 $srcdir = join('/', ($opt_srcdir, @TPATH));
328 $objdir = join('/', ($opt_objdir, @TPATH));
330 @TSTATS = ("--------------------------------------------------------------------------\n");
332 $t_str = sprintf ("%s%s", $test, ' ' x (40 - length($test)));
333 @TSTATS = (@TSTATS, $t_str);
334 @STATS = (@STATS, @TSTATS);
335 if (!$opt_quiet)
337 foreach $line (@TSTATS)
339 printf STDOUT "$line";
343 ($utime, $stime, $cutime, $cstime) = times;
344 `$opt_objdir/$test $srcdir $objdir > $opt_objdir/$test.out 2>&1`;
345 ($utime, $stime, $tutime, $tstime) = times;
347 # Subtract the before time from the after time.
348 $tutime -= $cutime;
349 $tstime -= $cstime;
351 if ($opt_zero)
353 if ($?)
355 $okay = 0;
356 if ($opt_verbose)
358 print STDERR
359 "\"$opt_objdir/$test > $opt_objdir/$test.out 2>&1\" returned $?\n";
364 return ($okay, $tutime, $tstime);
367 sub print_stats
369 my ($test, $okay, $failed_subtests, $subtests, $utime, $stime) = @_;
370 my ($hutime, $hstime);
371 # my (TEST_PERF);
372 my (@TSTATS);
373 my ($t_str, $pass_str);
375 $pass_str = $okay ? "passed" : "*** FAILED ***";
376 if ((0 != $subtests) && (!$okay))
378 $pass_str = $pass_str . " ($failed_subtests/$subtests failed)";
380 $pass_str = $pass_str . ' ' x (39 - length($pass_str));
382 if (-r "$test.perf")
384 if (!open (TEST_PERF, "<$opt_objdir/$test.perf"))
386 print STDERR "Unable to open \"$opt_objdir/$test.perf\"\n";
387 exit 1;
389 $_ = <TEST_PERF>;
391 ($hutime, $hstime) = split;
392 close TEST_PERF;
394 $t_str = sprintf (" %7.2f %7.2f %7.2f %7.2f\n"
395 . " %s %7.2f %7.2f %7.2f %7.2f%%%%\n",
396 $utime, $stime, $utime + $stime,
397 ($utime + $stime) - ($hutime + $hstime),
398 $pass_str,
399 $hutime, $hstime, $hutime + $hstime,
400 (($hutime + $hstime) == 0.0) ? 0.0 :
401 ((($utime + $stime) - ($hutime + $hstime))
402 / ($hutime + $hstime) * 100));
404 else
406 $hutime = 0.0;
407 $hstime = 0.0;
409 $t_str = sprintf (" %7.2f %7.2f %7.2f \n"
410 . " %s\n",
411 $utime, $stime, $utime + $stime,
412 $pass_str);
414 @TSTATS = ($t_str);
415 if (!$opt_quiet)
417 foreach $line (@TSTATS)
419 printf STDOUT "$line";
423 if ($okay && $opt_ustats)
425 if (!open (TEST_PERF, ">$opt_objdir/$test.perf"))
427 if (!$opt_quiet)
429 print STDERR "Unable to update \"$opt_objdir/$test.perf\"\n";
432 else
434 print TEST_PERF "$utime $stime\n";
435 close TEST_PERF;
439 return ($hutime, $hstime);
442 sub usage
444 print <<EOF;
445 $0 usage:
446 $0 [<options>] <test>+
448 Option | Description
449 --------------+-------------------------------------------------------------
450 -h --help | Print usage and exit.
451 -v --verbose | Verbose (incompatible with quiet).
452 -q --quiet | Quiet (incompatible with verbose).
453 -s --srcdir | Path to source tree (default is ".").
454 -o --objdir | Path to object tree (default is ".").
455 -u --ustats | Update historical statistics (stored in "<test>.perf".
456 -z --zero | Consider non-zero exit code to be an error.
457 --------------+-------------------------------------------------------------
459 If <test>.exp exists, <test>'s output is diff'ed with <test>.exp. Any
460 difference is considered failure.
462 If <test>.exp does not exist, output to stdout of the following form is
463 expected:
465 1..<n>
466 {not }ok[ 1]
467 {not }ok[ 2]
469 {not }ok[ n]
471 1 <= <n> < 2^31
473 Lines which do not match the patterns shown above are ignored.