1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
|
#! @PERL@ -w
# -*- Mode: perl; -*-
#
# Test the commands provided as part of MPICH
#
# mpicc, mpicxx - handle -Dname="foo bar" and -Dname='"foo bar"'
# (not done yet - see mpich1 test/command/runtests)
# mpiexec - environment handling; stdout, stderr redirection
#
# Configuration values
my $prefix = "@prefix@";
my $exec_prefix = "@exec_prefix@";
my $bindir = "@bindir@";
my $srcdir = "@srcdir@";
# Global variables
my $errors = 0;
$gVerbose = 0;
$xmlOutput = 0;
$xmlFile = "";
$xmlOutputContinue = 0;
# testoutput is used to keep a copy of all output in case there is an
# error and XML output containing the messages is desired.
$testoutput = "";
# The MPD process manager has trouble with stdin. While this should be
# fixed, for the moment, we provide a way to turn off those tests
$testStdin = 0;
if (defined($ENV{"MPIEXEC_HAS_STDIN"})) { $testStdin = 1; }
# Set a default for the timeout
# (The stdintest has hung sometimes; a correctly functioning mpiexec
# will abort when this timelimit is exceeded)
if (!defined($ENV{"MPIEXEC_TIMEOUT"})) {
$ENV{"MPIEXEC_TIMEOUT"} = 20;
}
#
# Get a way to kill processes
my $killall = '@KILLALL@';
my $myusername = "";
if (defined($ENV{'LOGNAME'})) {
$myusername = $ENV{'LOGNAME'};
}
# -------------------------------------------------------------------------
if (defined($ENV{'XMLFILE'})) {
$xmlOutput = 1;
$xmlFile = $ENV{'XMLFILE'};
}
if (defined($ENV{'XMLCONTINUE'}) && $ENV{'XMLCONTINUE'} eq "YES") {
$xmlOutputContinue = 1;
}
foreach $_ (@ARGV) {
if (/-debug/ || /-verbose/) {
$gVerbose = 1;
}
if (/-xmlfile=(.*)/) {
$xmlFile = $1;
$xmlOutput = 1;
}
else {
print STDERR "Unrecognized argument $_\n";
}
}
# -------------------------------------------------------------------------
if ($xmlOutput) {
if ($xmlOutputContinue) {
open XMLFD, ">>$xmlFile" || die "Cannot append to $xmlFile";
}
else {
open XMLFD, ">$xmlFile" || die "Cannot open $xmlFile for writing";
}
}
# -------------------------------------------------------------------------
# mpiexec env handling
# We assume that we can run non-MPI programs
%SaveENV = %ENV;
$ENV{TestEnvVar} = "test var name";
%EnvBase = ('PMI_FD' => 1, 'PMI_RANK' => 0, 'PMI_SIZE' => 1,
'PMI_DEBUG' => 0,
'MPI_APPNUM' => 0, 'MPI_UNIVERSE_SIZE' => 1,
'PMI_PORT' => 1,
'MPICH_INTERFACE_HOSTNAME' => 1,
'MPICH_INTERFACE_HOSTNAME_R0' => 1,
'MPICH_INTERFACE_HOSTNAME_R1' => 1,
'MPICH_INTERFACE_HOSTNAME_R2' => 1,
'MPICH_INTERFACE_HOSTNAME_R3' => 1,
# These are suspicious
'PMI_SPAWNED' => 0,
'PMI_TOTALVIEW' => 0,
);
# Other environment variables should be rejected
# Processes on cygwin always have SYSTEMROOT and WINDIR set
%EnvForced = ( 'SYSTEMROOT' => 1, 'WINDIR' => 1 );
%EnvExpected = ();
print "Try some environment args\n" if $gVerbose;
$mpiexec = "$bindir/mpiexec" ;
# Do we get the environment?
%EnvSeen = ();
%EnvExpected = ( 'PATH' => $ENV{PATH} );
&Announce( "$mpiexec printenv" );
open MOUT, "$mpiexec printenv 2>&1 |" || die "Could not run $mpiexec";
while (<MOUT>) {
# We check for the error output from gforker mpiexec; we can
# add others here as well
if (/([^=]+)=(.*)/ && ! /Return code/) {
$EnvSeen{$1} = $2;
}
else {
&ReportError( "Unexpected output from mpiexec: $_" );
$errors ++;
}
}
close MOUT;
$rc = $?;
if ($rc != 0) {
$errors ++;
&ReportError( "Non-zero return ($rc) from mpiexec\n" );
}
# Check that all vars in save are seen
%copyEnv = %SaveENV;
foreach my $key (keys(%EnvSeen)) {
if (defined($EnvBase{$key})) { next; }
delete $copyEnv{$key};
}
foreach my $key (keys(%copyEnv)) {
print "Enviroment variable $key not delivered to target program\n";
$errors ++;
}
%EnvSeen = ();
%EnvExpected = ( 'PATH' => $ENV{PATH} );
&Announce( "$mpiexec -envnone -envlist PATH printenv" );
open MOUT, "$mpiexec -envnone -envlist PATH printenv 2>&1 |" || die "Could not run $mpiexec";
while (<MOUT>) {
# We check for the error output from gforker mpiexec; we can
# add others here as well
if (/([^=]+)=(.*)/ && ! /Return code/) {
$EnvSeen{$1} = $2;
}
else {
&ReportError( "Unexpected output from mpiexec: $_" );
$errors ++;
}
}
close MOUT;
$rc = $?;
if ($rc != 0) {
$errors ++;
&ReportError( "Non-zero return ($rc) from mpiexec\n" );
}
# Check that only PATH and the PMI variables are set
$errors += &CheckEnvVars;
%EnvSeen = ();
%EnvExpected = ( 'PATH' => $ENV{PATH} );
&Announce( "$mpiexec -genvnone -genvlist PATH printenv " );
open MOUT, "$mpiexec -genvnone -genvlist PATH printenv 2>&1 |" || die "Could not run $mpiexec";
while (<MOUT>) {
# We check for the error output from gforker mpiexec; we can
# add others here as well
if (/([^=]+)=(.*)/ && ! /Return code/) {
$EnvSeen{$1} = $2;
}
else {
&ReportError( "Unexpected output from mpiexec: $_" );
$errors ++;
}
}
close MOUT;
$rc = $?;
if ($rc != 0) {
$errors ++;
&ReportError( "Non-zero return ($rc) from mpiexec\n" );
}
# Check that only PATH and the PMI variables are set
$errors += &CheckEnvVars;
%EnvSeen = ();
%EnvExpected = ( 'PATH' => $ENV{PATH},
'TestEnvVar' => $ENV{TestEnvVar} );
&Announce ( "$mpiexec -genvnone -genvlist PATH printenv : -envlist TestEnvVar,PATH printenv" );
open MOUT, "$mpiexec -genvnone -genvlist PATH printenv : -envlist TestEnvVar,PATH printenv 2>&1 |" || die "Could not run $mpiexec";
while (<MOUT>) {
# We check for the error output from gforker mpiexec; we can
# add others here as well
if (/Return code/) { next; }
if (/([^=]+)=(.*)/) {
$EnvSeen{$1} = $2;
}
else {
&ReportError( "Unexpected output from mpiexec: $_" );
$errors ++;
}
}
close MOUT;
$rc = $?;
if ($rc != 0) {
$errors ++;
&ReportError( "Non-zero return ($rc) from mpiexec\n" );
}
# Check that only PATH and the PMI variables are set
$errors += &CheckEnvVars;
# This test creates long env variables
my $varvalue = "a";
for (my $i=0; $i<11; $i++) {
$varvalue .= $varvalue;
}
$ENV{TESTVAR} = $varvalue;
%EnvSeen = ();
%EnvExpected = ( 'PATH' => $ENV{PATH},
'TESTVAR' => $ENV{TESTVAR},
);
&Announce( "$mpiexec -envnone -envlist PATH,TESTVAR printenv" );
open MOUT, "$mpiexec -envnone -envlist PATH,TESTVAR printenv 2>&1 |" || die "Could not run $mpiexec";
while (<MOUT>) {
# We check for the error output from gforker mpiexec; we can
# add others here as well
if (/([^=]+)=(.*)/ && ! /Return code/) {
$EnvSeen{$1} = $2;
}
else {
&ReportError( "Unexpected output from mpiexec: $_" );
$errors ++;
}
}
close MOUT;
$rc = $?;
if ($rc != 0) {
$errors ++;
&ReportError( "Non-zero return ($rc) from mpiexec\n" );
}
# Check that only PATH, TESTVAR, and the PMI variables are set, and
# that they have the correct values
$errors += &CheckEnvVars;
delete $ENV{TESTVAR};
# Intel reports problems with
# export TMP_ENV_VAR=1
# mpiexec -genvlist TMP_ENV_VAR -n 1 -host host1 ./a.out : -n 1 -host host2 \
# ./a.out
# or using the equivalent config file:
# mpiexec -configfile a.out.cfgfile
# where a.out.cfgfile contains
# -genvlist TMP_ENV_VAR
# -n 1 -host host1 ./a.out
# -n 1 -host host2 ./a.out
#
$ENV{'TMP_ENV_VAR'} = 1;
$myhost = `hostname`;
$myhost =~ s/\r?\n//;
&Announce( "$mpiexec -genvlist TMP_ENV_VAR -n 1 -host $myhost ./checkenv1 : -n 1 -host $myhost ./checkenv1" );
if (! -x "checkenv1" ) {
system "make checkenv1";
if (! -x "checkenv1") {
&ReportError( "Unable to build checkenv1 program\n" );
$errors ++;
}
}
open MOUT, "$mpiexec -genvlist TMP_ENV_VAR -n 1 -host $myhost ./checkenv1 : -n 1 -host $myhost ./checkenv1 |" || die "Could not run $mpiexec";
$foundNoErrors = 0;
while (<MOUT>) {
if (/ No Errors/) {
$foundNoErrors = 1;
}
else {
&ReportError( "Unexpected output from mpiexec: $_" );
$errors ++;
}
}
close MOUT;
$rc = $?;
if ($rc != 0) {
$errors ++;
&ReportError( "Non-zero return ($rc) from mpiexec\n" );
}
if (! $foundNoErrors) {
$errors ++;
&ReportError( "checkenv1 did not return No Errors\n" );
}
delete $ENV{'TMP_ENV_VAR'};
# -------------------------------------------------------------------------
# mpiexec stdout/stderr handling
&Announce( "$mpiexec ./stdiotest 2>err.txt 1>out.txt" );
if (! -x "stdiotest" ) {
system "make stdiotest";
if (! -x "stdiotest") {
&ReportError( "Unable to build stdiotest program\n" );
$errors ++;
}
}
if (-x "stdiotest") {
unlink "err.txt";
unlink "out.txt";
system "$mpiexec ./stdiotest 2>err.txt 1>out.txt";
# Compare the expected output
if (-s "err.txt" && -s "out.txt") {
# We check for the expected output line. We allow (but warn about)
# output that was not generated by the program, since that
# makes it impossible to write Unix-style pipes that include
# parallel programs.
open TFD, "<err.txt";
$sawOutput = 0;
$sawExtraLine = 0;
$sawExtraChars = 0;
while (<TFD>) {
if (/(.*)This is stderr(.*)/) {
my $pre = $1;
my $post = $2;
$sawOutput++;
if ($pre ne "" || $post ne "") { $sawExtraChars++; }
}
else {
print STDERR "Unexpected text in stderr: $_" if $showWarnings;
$sawExtraLine ++;
}
}
close TFD;
if ($sawOutput != 1) {
&ReportError( "Saw expected stderr line $sawOutput times\n" );
$errors ++;
}
open TFD, "<out.txt";
$sawOutput = 0;
$sawExtraLine = 0;
$sawExtraChars = 0;
while (<TFD>) {
if (/(.*)This is stdout(.*)/) {
my $pre = $1;
my $post = $2;
$sawOutput++;
if ($pre ne "" || $post ne "") { $sawExtraChars++; }
}
else {
if (/This is stderr/) {
&ReportError( "stderr output in stdout file\n" );
$errors++;
}
print STDERR "Unexpected text in stderr: $_" if $showWarnings;
$sawExtraLine ++;
}
}
close TFD;
if ($sawOutput != 1) {
&ReportError( "Saw expected stdout line $sawOutput times\n" );
$errors ++;
}
}
else {
if (! -s "out.txt") {
&ReportError( "Program stdiotest did not create stdout file\n" );
$errors ++;
}
if (! -s "err.txt") {
&ReportError( "Program stdiotest did not create stderr file\n" );
$errors ++;
}
}
unlink "err.txt";
unlink "out.txt";
}
# -------------------------------------------------------------------------
# mpiexec stdin handling
if ($testStdin) {
&Announce( "$mpiexec ./stdintest <in.txt 2>err.txt 1>out.txt" );
if (! -x "stdintest" ) {
system "make stdintest";
if (! -x "stdintest") {
&ReportError( "Unable to build stdintest program\n" );
$errors ++;
}
}
if (-x "stdintest") {
unlink "in.txt";
unlink "err.txt";
unlink "out.txt";
# Create the input file
open TFD, ">in.txt" || die "Cannot create test input file";
for (my $i = 0; $i < 1024; $i++) {
print TFD "This is line $i\n";
}
close TFD;
$rc = system "$mpiexec ./stdintest <in.txt 2>err.txt 1>out.txt";
if ($rc != 0) {
&ReportError( "Program stdintest failed with return $rc" );
$errors ++;
}
# Because some mpiexec programs fail to properly handle these stdio
# tests, we add a step to kill the test program if mpiexec failed
# to remove it.
if ($killall ne "true" && $myusername ne "") {
system "$killall -u $myusername stdintest";
}
# Compare the expected output
if (-s "out.txt") {
&CheckEchoedOutput;
}
else {
&ReportError( "Program stdintest did not create stdout file\n" );
$errors ++;
}
if (-s "err.txt") {
&ReportError( "Program stdintest created a non-empty stderr file\n" );
$errors ++;
system "cat err.txt";
}
unlink "err.txt";
unlink "out.txt";
# Try with a parallel job
&Announce( "$mpiexec -n 3 ./stdintest <in.txt 2>err.txt 1>out.txt" );
$rc = system "$mpiexec -n 3 ./stdintest <in.txt 2>err.txt 1>out.txt";
if ($rc != 0) {
&ReportError( "Program stdintest (3 processes) failed with return $rc" );
$errors ++;
}
# Because some mpiexec programs fail to properly handle these stdio
# tests, we add a step to kill the test program if mpiexec failed
# to remove it.
if ($killall ne "true" && $myusername ne "") {
system "$killall -u $myusername stdintest";
}
# Compare the expected output
if (-s "out.txt") {
&CheckEchoedOutput;
}
else {
&ReportError( "Program stdintest did not create stdout file\n" );
$errors ++;
}
if (-s "err.txt") {
&ReportError( "Program stdintest created a non-empty stderr file\n" );
$errors ++;
system "cat err.txt";
}
unlink "err.txt";
unlink "out.txt";
unlink "in.txt";
}
#
# Test for allowing stdin to have unread data
&Announce( "$mpiexec ./stdintest2 <in.txt 2>err.txt 1>out.txt" );
if (! -x "stdintest2" ) {
system "make stdintest2";
if (! -x "stdintest2") {
&ReportError( "Unable to build stdintest2 program\n" );
$errors ++;
}
}
if (-x "stdintest2") {
unlink "in.txt";
unlink "err.txt";
unlink "out.txt";
# Create the input file
open TFD, ">in.txt" || die "Cannot create test input file";
for (my $i = 0; $i < 1024; $i++) {
print TFD "This is line $i\n";
}
close TFD;
$rc = system "$mpiexec ./stdintest2 <in.txt 2>err.txt 1>out.txt";
if ($rc != 0) {
&ReportError( "Program stdintest2 failed with return $rc" );
$errors ++;
}
# Because some mpiexec programs fail to properly handle these stdio
# tests, we add a step to kill the test program if mpiexec failed
# to remove it.
if ($killall ne "true" && $myusername ne "") {
system "$killall -u $myusername stdintest2";
}
# Compare the expected output
if (-s "out.txt") {
# Check for No Errors ONLY
open TFD, "<out.txt" || die "Cannot create test input file";
$found_no_errors = 0;
my $found_other = 0;
while (<TFD>) {
if (/No Errors/) {
$found_no_errors = 1;
}
else {
if (!$found_other) {
&ReportError( "Found unexpected text %_" );
}
$found_other = 1;
$errors ++;
}
}
close TFD;
if (! $found_no_errors) {
&ReportError( "Did not find No Errors" );
$errors++;
}
}
if (-s "err.txt") {
&ReportError( "Program stdintest2 created a non-empty stderr file\n" );
$errors ++;
system "cat err.txt";
}
unlink "err.txt";
unlink "out.txt";
unlink "in.txt";
}
}
# -------------------------------------------------------------------------
# Compliation script testing, particularly for special command-line arguments
$cmd = "mpicc";
#$outlog = "/dev/null";
$outlog = "out.log";
unlink $outlog;
&Announce( "$bindir/mpicc -Dtestname=\\\"foo\\\" $srcdir/rtest.c" );
system "$bindir/mpicc -Dtestname=\\\"foo\\\" $srcdir/rtest.c > $outlog 2>&1";
$rc = $?;
if ($rc != 0) {
&ReportError( "Error with escaped double quotes in $cmd\n" );
system( "cat $outlog" );
$errors ++;
}
unlink $outlog;
&Announce( "$bindir/mpicc -Dtestname='\"foo bar\"' $srcdir/rtest.c" );
system "$bindir/mpicc -Dtestname='\"foo bar\"' $srcdir/rtest.c > $outlog 2>&1";
$rc = $?;
if ($rc != 0) {
&ReportError( "Error with double inside of single quotes in $cmd\n" );
system( "cat $outlog" );
$errors ++;
}
unlink "a.out";
# Run this test only if mpicxx is valid
if ("@bindings@" =~ /cxx/) {
$cmd = "mpicxx";
unlink $outlog;
&Announce( "$bindir/mpicxx -Dtestname=\\\"foo\\\" $srcdir/rtestx.cxx" );
system "$bindir/mpicxx -Dtestname=\\\"foo\\\" $srcdir/rtestx.cxx > $outlog 2>&1";
$rc = $?;
if ($rc != 0) {
&ReportError( "Error with escaped double quotes in $cmd\n" );
system( "cat $outlog" );
$errors ++;
}
unlink $outlog;
&Announce( "$bindir/mpicxx -Dtestname='\"foo bar\"' $srcdir/rtestx.cxx" );
system "$bindir/mpicxx -Dtestname='\"foo bar\"' $srcdir/rtestx.cxx > $outlog 2>&1";
$rc = $?;
if ($rc != 0) {
&ReportError( "Error with double inside of single quotes in $cmd\n" );
system( "cat $outlog" );
$errors ++;
}
unlink "a.out";
}
# Run this test only if mpif77 is valid
if ("@bindings@" =~ /f77/) {
$cmd = "mpif77";
unlink $outlog;
&Announce( "$bindir/mpif77 -Dtestname=\\\"foo\\\" $srcdir/rtestf.F" );
system "$bindir/mpif77 -Dtestname=\\\"foo\\\" $srcdir/rtestf.F > $outlog 2>&1";
$rc = $?;
if ($rc != 0) {
&ReportError( "Error with escaped double quotes in $cmd\n" );
system( "cat $outlog" );
$errors ++;
}
unlink $outlog;
&Announce( "$bindir/mpif77 -Dtestname='\"foo bar\"' $srcdir/rtestf.F" );
system "$bindir/mpif77 -Dtestname='\"foo bar\"' $srcdir/rtestf.F > $outlog 2>&1";
$rc = $?;
if ($rc != 0) {
&ReportError( "Error with double inside of single quotes in $cmd\n" );
system( "cat $outlog" );
$errors ++;
}
unlink "a.out";
}
# FIXME:
# Still to do:
# Tests for other options to mpiexec (other combinations of env options,
# all MPI-2 mandated options)
#
# ------------------------------------------------------------------------
# Test Summary
if ($errors != 0) {
print " Found $errors errors\n";
}
else {
print " No Errors\n";
}
if ($xmlOutput) {
$newline = "\r\n";
my $workdir = `pwd`;
$workdir =~ s/\r?\n//;
print XMLFD "<MPITEST>$newline<NAME>cmdtest</NAME>$newline";
print XMLFD "<WORKDIR>$workdir</WORKDIR>$newline";
if ($errors != 0) {
print XMLFD "<STATUS>fail</STATUS>$newline";
$testoutput =~ s/</\*AMP\*lt;/g;
$testoutput =~ s/>/\*AMP\*gt;/g;
$testoutput =~ s/&/\*AMP\*amp;/g;
$testoutput =~ s/\*AMP\*/&/g;
print XMLFD "<TESTDIFF>$newline$testoutput</TESTDIFF>$newline";
}
else {
print XMLFD "<STATUS>pass</STATUS>$newline";
}
print XMLFD "</MPITEST>$newline</MPITESTRESULTS>$newline";
close XMLFD;
}
exit 0;
# ------------------------------------------------------------------------
# Testing routines
# Check for environment variables
# For simplicity, uses global variables:
# EnvSeen - variables seen
# EnvBase - variables part of the PMI interface
# EnvExpected - other variables
sub CheckEnvVars {
my $errcount = 0;
foreach my $key (keys(%EnvSeen)) {
if (defined($EnvBase{$key})) { next; }
if (defined($EnvExpected{$key})) {
my $expectedValue = $EnvExpected{$key};
my $observedValue = $EnvSeen{$key};
if ($expectedValue ne $observedValue) {
$errcount++;
&ReportError( "Environment variable $key has value $observedValue but $expectedValue expected\n" );
}
next;
}
if (defined($EnvForced{$key})) { next; }
$value = $EnvSeen{$key};
&ReportError( "Unexpected environment variable $key with $value\n" );
$errcount ++;
}
return $errcount;
}
sub Announce {
my $msg = $_[0];
print STDOUT $msg . "\n";
$testoutput .= $msg . "\n";
}
sub ReportError {
my $msg = $_[0];
if ( !($msg =~ /\n/) ) { $msg .= "\n"; }
print STDERR $msg;
$testoutput .= $msg;
}
# This routine is used to check the output from a program that reads
# from stdin and echos the output.
sub CheckEchoedOutput {
# We check for the expected output line. We allow (but warn about)
# output that was not generated by the program, since that
# makes it impossible to write Unix-style pipes that include
# parallel programs.
open TFD, "<out.txt";
my $sawOutput = 0;
my $sawExtraLine = 0;
my $sawExtraChars = 0;
my $expectedLinenum = 0;
my $linesSeen = 0;
while (<TFD>) {
if (/(.*)This is line (\d+)(.*)/) {
my $pre = $1;
my $linenum = $2;
my $post = $3;
$sawOutput++;
$linesSeen++;
if ($pre ne "" || $post ne "") { $sawExtraChars++; }
if ($linenum != $expectedLinenum) {
&ReportError( "Unexpected linenumber in output; expected $expectedLinenum but say $linenum\n" );
$errors++;
}
$expectedLinenum++;
}
else {
print STDERR "Unexpected text in stdout: $_" if $showWarnings;
$sawExtraLine ++;
}
}
close TFD;
if ($linesSeen != 1024) {
&ReportError( "Did not see entire input file (only $linesSeen lines)\n" );
$errors++;
}
}
|