@@ -29,7 +29,6 @@ use POSIX qw( WEXITSTATUS WIFEXITED);
29
29
use Cwd qw( abs_path getcwd) ;
30
30
use File::Path qw( mkpath) ; # mkpath works with ancient perl, as well as newer perl
31
31
use File::Spec;
32
- use Data::Dumper; # for debugging.
33
32
34
33
# these are created in the directory where we are run, which might be
35
34
# a build directory.
@@ -294,8 +293,6 @@ sub runtest {
294
293
}
295
294
}
296
295
297
- # print sprintf("END: %08x\n", $r);
298
-
299
296
if ($r == 0) {
300
297
if ($linecount == 0) {
301
298
printf " %-40s: passed\n " , $name ;
@@ -368,12 +365,10 @@ sub loadconfighash {
368
365
while (<CONFIG_H>) {
369
366
chomp ;
370
367
if (/ ^\# define (.*) 1/ ) {
371
- # print "Setting $1\n";
372
368
$main::confighhash -> {$1 } = 1;
373
369
}
374
370
}
375
371
close (CONFIG_H);
376
- # print Dumper($main::confighhash);
377
372
378
373
# also run tcpdump --fp-type to get the type of floating-point
379
374
# arithmetic we're doing, setting a HAVE_{fptype} key based
@@ -425,7 +420,6 @@ sub runOneComplexTest {
425
420
my $configset = $testconfig -> {config_set };
426
421
my $configunset = $testconfig -> {config_unset };
427
422
my $ch = loadconfighash();
428
- # print Dumper($ch);
429
423
430
424
if (defined ($configset )) {
431
425
$foundit = ($ch -> {$configset } == 1);
@@ -446,9 +440,6 @@ sub runOneComplexTest {
446
440
return 0;
447
441
}
448
442
449
- # use Data::Dumper;
450
- # print Dumper($testconfig);
451
-
452
443
# EXPAND any occurrences of @TESTDIR@ to $testsdir
453
444
$options =~ s /\@ TESTDIR\@ / $testsdir / ;
454
445
@@ -478,11 +469,8 @@ sub runComplexTests {
478
469
$definitions = <FILE>;
479
470
}
480
471
close (FILE);
481
- # print "STUFF: ${definitions}\n";
482
472
eval $definitions ;
483
473
if (defined ($testlist )) {
484
- # use Data::Dumper;
485
- # print Dumper($testlist);
486
474
foreach $test (@$testlist ) {
487
475
runOneComplexTest($test );
488
476
}
@@ -503,12 +491,9 @@ sub runSimpleTests {
503
491
504
492
unlink (" core" );
505
493
($name , $input , $output , @options ) = split ;
506
- # print "processing ${only} vs ${name}\n";
507
494
next if (defined ($only ) && $only ne $name );
508
495
509
496
my $options = join (" " , @options );
510
- # print "@{options} becomes ${options}\n";
511
-
512
497
my $hash = { name => $name ,
513
498
input => $input ,
514
499
output => $output ,
0 commit comments