VirtualBox

source: kBuild/trunk/src/gmakenew/tests/run_make_tests.pl@ 910

Last change on this file since 910 was 903, checked in by bird, 18 years ago

Merged with the 2007-05-23 CVS. Added rsort and fixed a couple of windows build issues.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 9.6 KB
Line 
1#!/usr/bin/env perl
2# -*-perl-*-
3
4# Test driver for the Make test suite
5
6# Usage: run_make_tests [testname]
7# [-debug]
8# [-help]
9# [-verbose]
10# [-keep]
11# [-make <make prog>]
12# (and others)
13
14# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
15# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
16# This file is part of GNU Make.
17#
18# GNU Make is free software; you can redistribute it and/or modify it under the
19# terms of the GNU General Public License as published by the Free Software
20# Foundation; either version 2, or (at your option) any later version.
21#
22# GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
23# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
24# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
25#
26# You should have received a copy of the GNU General Public License along with
27# GNU Make; see the file COPYING. If not, write to the Free Software
28# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
29
30$valgrind = 0; # invoke make with valgrind
31$valgrind_args = '--num-callers=15 --tool=memcheck --leak-check=full';
32$pure_log = undef;
33
34require "test_driver.pl";
35
36# Some target systems might not have the POSIX module...
37$has_POSIX = eval { require "POSIX.pm" };
38
39#$SIG{INT} = sub { print STDERR "Caught a signal!\n"; die @_; };
40
41sub valid_option
42{
43 local($option) = @_;
44
45 if ($option =~ /^-make([-_]?path)?$/)
46 {
47 $make_path = shift @argv;
48 if (!-f $make_path)
49 {
50 print "$option $make_path: Not found.\n";
51 exit 0;
52 }
53 return 1;
54 }
55
56 if ($option =~ /^-valgrind$/i) {
57 $valgrind = 1;
58 return 1;
59 }
60
61# This doesn't work--it _should_! Someone badly needs to fix this.
62#
63# elsif ($option =~ /^-work([-_]?dir)?$/)
64# {
65# $workdir = shift @argv;
66# return 1;
67# }
68
69 return 0;
70}
71
72
73# This is an "all-in-one" function. Arguments are as follows:
74#
75# [0] (string): The makefile to be tested. undef means use the last one.
76# [1] (string): Arguments to pass to make.
77# [2] (string): Answer we should get back.
78# [3] (integer): Exit code we expect. A missing code means 0 (success)
79
80$old_makefile = undef;
81
82sub run_make_test
83{
84 local ($makestring, $options, $answer, $err_code) = @_;
85
86 # If the user specified a makefile string, create a new makefile to contain
87 # it. If the first value is not defined, use the last one (if there is
88 # one).
89
90 if (! defined $makestring) {
91 defined $old_makefile
92 || die "run_make_test(undef) invoked before run_make_test('...')\n";
93 $makefile = $old_makefile;
94 } else {
95 if (! defined($makefile)) {
96 $makefile = &get_tmpfile();
97 }
98
99 # Make sure it ends in a newline.
100 $makestring && $makestring !~ /\n$/s and $makestring .= "\n";
101
102 # Replace @MAKEFILE@ with the makefile name and @MAKE@ with the path to
103 # make
104 $makestring =~ s/#MAKEFILE#/$makefile/g;
105 $makestring =~ s/#MAKEPATH#/$mkpath/g;
106 $makestring =~ s/#MAKE#/$make_name/g;
107 $makestring =~ s/#PWD#/$pwd/g;
108
109 # Populate the makefile!
110 open(MAKEFILE, "> $makefile") || die "Failed to open $makefile: $!\n";
111 print MAKEFILE $makestring;
112 close(MAKEFILE) || die "Failed to write $makefile: $!\n";
113 }
114
115 # Do the same processing on $answer as we did on $makestring.
116
117 $answer && $answer !~ /\n$/s and $answer .= "\n";
118 $answer =~ s/#MAKEFILE#/$makefile/g;
119 $answer =~ s/#MAKEPATH#/$mkpath/g;
120 $answer =~ s/#MAKE#/$make_name/g;
121 $answer =~ s/#PWD#/$pwd/g;
122
123 &run_make_with_options($makefile, $options, &get_logfile(0), $err_code);
124 &compare_output($answer, &get_logfile(1));
125
126 $old_makefile = $makefile;
127 $makefile = undef;
128}
129
130# The old-fashioned way...
131sub run_make_with_options {
132 local ($filename,$options,$logname,$expected_code) = @_;
133 local($code);
134 local($command) = $make_path;
135
136 $expected_code = 0 unless defined($expected_code);
137
138 # Reset to reflect this one test.
139 $test_passed = 1;
140
141 if ($filename) {
142 $command .= " -f $filename";
143 }
144
145 if ($options) {
146 $command .= " $options";
147 }
148
149 if ($valgrind) {
150 print VALGRIND "\n\nExecuting: $command\n";
151 }
152
153 $code = &run_command_with_output($logname,$command);
154
155 # Check to see if we have Purify errors. If so, keep the logfile.
156 # For this to work you need to build with the Purify flag -exit-status=yes
157
158 if ($pure_log && -f $pure_log) {
159 if ($code & 0x7000) {
160 $code &= ~0x7000;
161
162 # If we have a purify log, save it
163 $tn = $pure_testname . ($num_of_logfiles ? ".$num_of_logfiles" : "");
164 print("Renaming purify log file to $tn\n") if $debug;
165 rename($pure_log, "$tn")
166 || die "Can't rename $log to $tn: $!\n";
167 ++$purify_errors;
168 } else {
169 unlink($pure_log);
170 }
171 }
172
173 if ($code != $expected_code) {
174 print "Error running $make_path (expected $expected_code; got $code): $command\n";
175 $test_passed = 0;
176 # If it's a SIGINT, stop here
177 if ($code & 127) {
178 print STDERR "\nCaught signal ".($code & 127)."!\n";
179 exit($code);
180 }
181 return 0;
182 }
183
184 if ($profile & $vos) {
185 system "add_profile $make_path";
186 }
187
188 1;
189}
190
191sub print_usage
192{
193 &print_standard_usage ("run_make_tests",
194 "[-make_path make_pathname] [-valgrind]",);
195}
196
197sub print_help
198{
199 &print_standard_help ("-make_path",
200 "\tYou may specify the pathname of the copy of make to run.");
201}
202
203sub get_this_pwd {
204 $delete_command = 'rm -f';
205 if ($has_POSIX) {
206 $__pwd = POSIX::getcwd();
207 } elsif ($vos) {
208 $delete_command = "delete_file -no_ask";
209 $__pwd = `++(current_dir)`;
210 } else {
211 # No idea... just try using pwd as a last resort.
212 chop ($__pwd = `pwd`);
213 }
214
215 return $__pwd;
216}
217
218sub set_defaults
219{
220 # $profile = 1;
221 $testee = "GNU make";
222 $make_path = "make";
223 $tmpfilesuffix = "mk";
224 $pwd = &get_this_pwd;
225}
226
227sub set_more_defaults
228{
229 local($string);
230 local($index);
231
232 # find the type of the port. We do this up front to have a single
233 # point of change if it needs to be tweaked.
234 #
235 # This is probably not specific enough.
236 #
237 if ($osname =~ /Windows/i || $osname =~ /MINGW32/i || $osname =~ /CYGWIN_NT/i) {
238 $port_type = 'W32';
239 }
240 # Bleah, the osname is so variable on DOS. This kind of bites.
241 # Well, as far as I can tell if we check for some text at the
242 # beginning of the line with either no spaces or a single space, then
243 # a D, then either "OS", "os", or "ev" and a space. That should
244 # match and be pretty specific.
245 elsif ($osname =~ /^([^ ]*|[^ ]* [^ ]*)D(OS|os|ev) /) {
246 $port_type = 'DOS';
247 }
248 # Check for OS/2
249 elsif ($osname =~ m%OS/2%) {
250 $port_type = 'OS/2';
251 }
252 # Everything else, right now, is UNIX. Note that we should integrate
253 # the VOS support into this as well and get rid of $vos; we'll do
254 # that next time.
255 else {
256 $port_type = 'UNIX';
257 }
258
259 # On DOS/Windows system the filesystem apparently can't track
260 # timestamps with second granularity (!!). Change the sleep time
261 # needed to force a file to be considered "old".
262 $wtime = $port_type eq 'UNIX' ? 1 : $port_type eq 'OS/2' ? 2 : 4;
263
264 print "Port type: $port_type\n" if $debug;
265 print "Make path: $make_path\n" if $debug;
266
267 # Find the full pathname of Make. For DOS systems this is more
268 # complicated, so we ask make itself.
269 my $mk = `sh -c 'echo "all:;\@echo \\\$(MAKE)" | $make_path -f-'`;
270 chop $mk;
271 $mk or die "FATAL ERROR: Cannot determine the value of \$(MAKE):\n
272'echo \"all:;\@echo \\\$(MAKE)\" | $make_path -f-' failed!\n";
273 $make_path = $mk;
274 print "Make\t= `$make_path'\n" if $debug;
275
276 $string = `$make_path -v -f /dev/null 2> /dev/null`;
277
278 $string =~ /^(GNU Make [^,\n]*)/;
279 $testee_version = "$1\n";
280
281 $string = `sh -c "$make_path -f /dev/null 2>&1"`;
282 if ($string =~ /(.*): \*\*\* No targets\. Stop\./) {
283 $make_name = $1;
284 }
285 else {
286 if ($make_path =~ /$pathsep([^\n$pathsep]*)$/) {
287 $make_name = $1;
288 }
289 else {
290 $make_name = $make_path;
291 }
292 }
293
294 # prepend pwd if this is a relative path (ie, does not
295 # start with a slash, but contains one). Thanks for the
296 # clue, Roland.
297
298 if (index ($make_path, ":") != 1 && index ($make_path, "/") > 0)
299 {
300 $mkpath = "$pwd$pathsep$make_path";
301 }
302 else
303 {
304 $mkpath = $make_path;
305 }
306
307 # Get Purify log info--if any.
308
309 if (exists $ENV{PURIFYOPTIONS}
310 && $ENV{PURIFYOPTIONS} =~ /.*-logfile=([^ ]+)/) {
311 $pure_log = $1 || '';
312 $pure_log =~ s/%v/$make_name/;
313 $purify_errors = 0;
314 }
315
316 $string = `sh -c "$make_path -j 2 -f /dev/null 2>&1"`;
317 if ($string =~ /not supported/) {
318 $parallel_jobs = 0;
319 }
320 else {
321 $parallel_jobs = 1;
322 }
323
324 # Set up for valgrind, if requested.
325
326 if ($valgrind) {
327 open(VALGRIND, "> valgrind.out")
328 || die "Cannot open valgrind.out: $!\n";
329 # -q --leak-check=yes
330 exists $ENV{VALGRIND_ARGS} and $valgrind_args = $ENV{VALGRIND_ARGS};
331 $make_path = "valgrind --log-fd=".fileno(VALGRIND)." $valgrind_args $make_path";
332 # F_SETFD is 2
333 fcntl(VALGRIND, 2, 0) or die "fcntl(setfd) failed: $!\n";
334 system("echo Starting on `date` 1>&".fileno(VALGRIND));
335 print "Enabled valgrind support.\n";
336 }
337}
338
339sub setup_for_test
340{
341 $makefile = &get_tmpfile;
342 if (-f $makefile) {
343 unlink $makefile;
344 }
345
346 # Get rid of any Purify logs.
347 if ($pure_log) {
348 ($pure_testname = $testname) =~ tr,/,_,;
349 $pure_testname = "$pure_log.$pure_testname";
350 system("rm -f $pure_testname*");
351 print("Purify testfiles are: $pure_testname*\n") if $debug;
352 }
353}
354
355exit !&toplevel;
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette