mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-04 03:06:28 +00:00
Encapsulated all of the print statements in "if( $VERBOSE) { }". The testing script will be absoutely silent now except for errors, which will still be printed to the annoyance of the user.
llvm-svn: 29525
This commit is contained in:
parent
154ffd3c8f
commit
92b5a09795
@ -185,7 +185,7 @@ if ($CONFIGUREARGS !~ /--disable-jit/) {
|
||||
}
|
||||
|
||||
|
||||
if (@ARGV != 0 and @ARGV != 3){
|
||||
if (@ARGV != 0 and @ARGV != 3 and $VERBOSE){
|
||||
foreach $x (@ARGV){
|
||||
print "$x\n";
|
||||
}
|
||||
@ -376,7 +376,7 @@ sub GetDejagnuTestResults { # (filename, log)
|
||||
my $firstline;
|
||||
$/ = "\n"; #Make sure we're going line at a time.
|
||||
|
||||
print "DEJAGNU TEST RESULTS:\n";
|
||||
if( $VERBOSE) { print "DEJAGNU TEST RESULTS:\n"; }
|
||||
|
||||
if (open SRCHFILE, $filename) {
|
||||
# Process test results
|
||||
@ -394,10 +394,10 @@ sub GetDejagnuTestResults { # (filename, log)
|
||||
$first_list = 0;
|
||||
$should_break = 1;
|
||||
push(@lines, "$_\n");
|
||||
print " $_\n";
|
||||
if( $VERBOSE) { print " $_\n"; }
|
||||
} else {
|
||||
push(@lines, "$_\n");
|
||||
print " $_\n";
|
||||
if( $VERBOSE) { print " $_\n"; }
|
||||
}
|
||||
} #elsif ( m/Summary/ ) {
|
||||
# if ( $first_list ) {
|
||||
@ -414,7 +414,7 @@ sub GetDejagnuTestResults { # (filename, log)
|
||||
#}
|
||||
elsif ( $readingsum ) {
|
||||
push(@lines,"$_\n");
|
||||
print " $_\n";
|
||||
if( $VERBOSE) { print " $_\n"; }
|
||||
}
|
||||
|
||||
}
|
||||
@ -460,7 +460,7 @@ sub SendData{
|
||||
$send.= "Content-length: $length\n\n";
|
||||
$send.= "$content";
|
||||
|
||||
print SOCK $send;
|
||||
#print SOCK $send;
|
||||
my $result;
|
||||
while(<SOCK>){
|
||||
$result .= $_;
|
||||
|
Loading…
x
Reference in New Issue
Block a user