Various minor updates and code cleanups.
[make.git] / tests / run_make_tests.pl
blobca711b291354995b9252e3ec343b23acfe5714bc
1 #!/usr/bin/env perl
2 # -*-perl-*-
4 # Test driver for the Make test suite
6 # Usage: run_make_tests [testname]
7 # [-debug]
8 # [-help]
9 # [-verbose]
10 # [-keep]
11 # [-make <make prog>]
12 # (and others)
14 $valgrind = 0; # invoke make with valgrind
15 $pure_log = undef;
17 require "test_driver.pl";
19 #$SIG{INT} = sub { print STDERR "Caught a signal!\n"; die @_; };
21 sub valid_option
23 local($option) = @_;
25 if ($option =~ /^-make([-_]?path)?$/)
27 $make_path = shift @argv;
28 if (!-f $make_path)
30 print "$option $make_path: Not found.\n";
31 exit 0;
33 return 1;
36 if ($option =~ /^-valgrind$/i) {
37 $valgrind = 1;
38 return 1;
41 # This doesn't work--it _should_! Someone badly needs to fix this.
43 # elsif ($option =~ /^-work([-_]?dir)?$/)
44 # {
45 # $workdir = shift @argv;
46 # return 1;
47 # }
49 return 0;
53 # This is an "all-in-one" function. Arguments are as follows:
55 # [0] (string): The makefile to be tested. undef means use the last one.
56 # [1] (string): Arguments to pass to make.
57 # [2] (string): Answer we should get back.
58 # [3] (integer): Exit code we expect. A missing code means 0 (success)
60 $old_makefile = undef;
62 sub run_make_test
64 local ($makestring, $options, $answer, $err_code) = @_;
66 # If the user specified a makefile string, create a new makefile to contain
67 # it. If the first value is not defined, use the last one (if there is
68 # one).
70 if (! defined $makestring) {
71 defined $old_makefile
72 || die "run_make_test(undef) invoked before run_make_test('...')\n";
73 $makefile = $old_makefile;
74 } else {
75 if (! defined($makefile)) {
76 $makefile = &get_tmpfile();
79 # Make sure it ends in a newline.
80 $makestring && $makestring !~ /\n$/s and $makestring .= "\n";
82 # Replace @MAKEFILE@ with the makefile name and @MAKE@ with the path to
83 # make
84 $makestring =~ s/#MAKEFILE#/$makefile/g;
85 $makestring =~ s/#MAKEPATH#/$mkpath/g;
86 $makestring =~ s/#MAKE#/$make_name/g;
87 $makestring =~ s/#PWD#/$pwd/g;
89 # Populate the makefile!
90 open(MAKEFILE, "> $makefile") || die "Failed to open $makefile: $!\n";
91 print MAKEFILE $makestring;
92 close(MAKEFILE) || die "Failed to write $makefile: $!\n";
95 # Do the same processing on $answer as we did on $makestring.
97 $answer && $answer !~ /\n$/s and $answer .= "\n";
98 $answer =~ s/#MAKEFILE#/$makefile/g;
99 $answer =~ s/#MAKEPATH#/$mkpath/g;
100 $answer =~ s/#MAKE#/$make_name/g;
101 $answer =~ s/#PWD#/$pwd/g;
103 &run_make_with_options($makefile, $options, &get_logfile(0), $err_code);
104 &compare_output($answer, &get_logfile(1));
106 $old_makefile = $makefile;
107 $makefile = undef;
110 # The old-fashioned way...
111 sub run_make_with_options {
112 local ($filename,$options,$logname,$expected_code) = @_;
113 local($code);
114 local($command) = $make_path;
116 $expected_code = 0 unless defined($expected_code);
118 # Reset to reflect this one test.
119 $test_passed = 1;
121 if ($filename) {
122 $command .= " -f $filename";
125 if ($options) {
126 $command .= " $options";
129 if ($valgrind) {
130 print VALGRIND "\n\nExecuting: $command\n";
133 $code = &run_command_with_output($logname,$command);
135 # Check to see if we have Purify errors. If so, keep the logfile.
136 # For this to work you need to build with the Purify flag -exit-status=yes
138 if ($pure_log && -f $pure_log) {
139 if ($code & 0x7000) {
140 $code &= ~0x7000;
142 # If we have a purify log, save it
143 $tn = $pure_testname . ($num_of_logfiles ? ".$num_of_logfiles" : "");
144 print("Renaming purify log file to $tn\n") if $debug;
145 rename($pure_log, "$tn")
146 || die "Can't rename $log to $tn: $!\n";
147 ++$purify_errors;
148 } else {
149 unlink($pure_log);
153 if ($code != $expected_code) {
154 print "Error running $make_path (expected $expected_code; got $code): $command\n";
155 $test_passed = 0;
156 # If it's a SIGINT, stop here
157 if ($code & 127) {
158 print STDERR "\nCaught signal ".($code & 127)."!\n";
159 exit($code);
161 return 0;
164 if ($profile & $vos) {
165 system "add_profile $make_path";
171 sub print_usage
173 &print_standard_usage ("run_make_tests", "[-make_path make_pathname]");
176 sub print_help
178 &print_standard_help ("-make_path",
179 "\tYou may specify the pathname of the copy of make to run.");
182 sub get_this_pwd {
183 if ($vos) {
184 $delete_command = "delete_file";
185 $__pwd = `++(current_dir)`;
187 else {
188 $delete_command = "rm";
189 chop ($__pwd = `pwd`);
192 return $__pwd;
195 sub set_defaults
197 # $profile = 1;
198 $testee = "GNU make";
199 $make_path = "make";
200 $tmpfilesuffix = "mk";
201 $pwd = &get_this_pwd;
204 sub set_more_defaults
206 local($string);
207 local($index);
209 # Make sure we're in the C locale for those systems that support it,
210 # so sorting, etc. is predictable.
212 $ENV{LANG} = 'C';
214 # find the type of the port. We do this up front to have a single
215 # point of change if it needs to be tweaked.
217 # This is probably not specific enough.
219 if ($osname =~ /Windows/i || $osname =~ /MINGW32/i) {
220 $port_type = 'W32';
222 # Bleah, the osname is so variable on DOS. This kind of bites.
223 # Well, as far as I can tell if we check for some text at the
224 # beginning of the line with either no spaces or a single space, then
225 # a D, then either "OS", "os", or "ev" and a space. That should
226 # match and be pretty specific.
227 elsif ($osname =~ /^([^ ]*|[^ ]* [^ ]*)D(OS|os|ev) /) {
228 $port_type = 'DOS';
230 # Check for OS/2
231 elsif ($osname =~ m%OS/2%) {
232 $port_type = 'OS/2';
234 # Everything else, right now, is UNIX. Note that we should integrate
235 # the VOS support into this as well and get rid of $vos; we'll do
236 # that next time.
237 else {
238 $port_type = 'UNIX';
241 # On DOS/Windows system the filesystem apparently can't track
242 # timestamps with second granularity (!!). Change the sleep time
243 # needed to force a file to be considered "old".
244 $wtime = $port_type eq 'UNIX' ? 1 : $port_type eq 'OS/2' ? 2 : 4;
246 print "Port type: $port_type\n" if $debug;
247 print "Make path: $make_path\n" if $debug;
249 # Find the full pathname of Make. For DOS systems this is more
250 # complicated, so we ask make itself.
251 $make_path = `sh -c 'echo "all:;\@echo \\\$(MAKE)" | $make_path -f-'`;
252 chop $make_path;
253 print "Make\t= `$make_path'\n" if $debug;
255 $string = `$make_path -v -f /dev/null 2> /dev/null`;
257 $string =~ /^(GNU Make [^,\n]*)/;
258 $testee_version = "$1\n";
260 $string = `sh -c "$make_path -f /dev/null 2>&1"`;
261 if ($string =~ /(.*): \*\*\* No targets\. Stop\./) {
262 $make_name = $1;
264 else {
265 if ($make_path =~ /$pathsep([^\n$pathsep]*)$/) {
266 $make_name = $1;
268 else {
269 $make_name = $make_path;
273 # prepend pwd if this is a relative path (ie, does not
274 # start with a slash, but contains one). Thanks for the
275 # clue, Roland.
277 if (index ($make_path, ":") != 1 && index ($make_path, "/") > 0)
279 $mkpath = "$pwd$pathsep$make_path";
281 else
283 $mkpath = $make_path;
286 # Get Purify log info--if any.
288 if (exists $ENV{PURIFYOPTIONS}
289 && $ENV{PURIFYOPTIONS} =~ /.*-logfile=([^ ]+)/) {
290 $pure_log = $1 || '';
291 $pure_log =~ s/%v/$make_name/;
292 $purify_errors = 0;
295 $string = `sh -c "$make_path -j 2 -f /dev/null 2>&1"`;
296 if ($string =~ /not supported/) {
297 $parallel_jobs = 0;
299 else {
300 $parallel_jobs = 1;
303 # Set up for valgrind, if requested.
305 if ($valgrind) {
306 # use POSIX qw(:fcntl_h);
307 # require Fcntl;
308 open(VALGRIND, "> valgrind.out")
309 || die "Cannot open valgrind.out: $!\n";
310 # -q --leak-check=yes
311 $make_path = "valgrind --num-callers=15 --logfile-fd=".fileno(VALGRIND)." $make_path";
312 # F_SETFD is 2
313 fcntl(VALGRIND, 2, 0) or die "fcntl(setfd) failed: $!\n";
314 system("echo Starting on `date` 1>&".fileno(VALGRIND));
315 print "Enabled valgrind support.\n";
319 sub setup_for_test
321 $makefile = &get_tmpfile;
322 if (-f $makefile) {
323 unlink $makefile;
326 # Get rid of any Purify logs.
327 if ($pure_log) {
328 ($pure_testname = $testname) =~ tr,/,_,;
329 $pure_testname = "$pure_log.$pure_testname";
330 system("rm -f $pure_testname*");
331 print("Purify testfiles are: $pure_testname*\n") if $debug;
335 exit !&toplevel;