X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=utils%2FplotNLT.pl;h=55d503d68933fad5d1c7e3c73c6d3528f5e102c1;hb=6fa1c051dc515b6fd1f9a26ac12fed985469bff5;hp=ca911db26f5dcd0bd031a2081a2d44c2dfb624a7;hpb=e43b3fbb5f21878181278add7a29e2215eccad0d;p=oota-llvm.git diff --git a/utils/plotNLT.pl b/utils/plotNLT.pl index ca911db26f5..55d503d6893 100644 --- a/utils/plotNLT.pl +++ b/utils/plotNLT.pl @@ -14,26 +14,40 @@ $connectionInfo="dbi:mysql:$db;$host"; # make connection to database $dbh = DBI->connect($connectionInfo,$userid,$passwd) or die DBI->errstr; -$prog = shift @ARGV; -$test = shift @ARGV; + +$count = @ARGV / 2; print "set xdata time\n"; print 'set timefmt "%Y-%m-%d"'; -print "\nplot '-' using 1:2 with lines \n"; - -$query = "Select RUN, VALUE from Tests where TEST = '$test' AND NAME = '$prog' ORDER BY RUN"; -#print $query; - -my $sth = $dbh->prepare( $query) || die "Can't prepare statement: $DBI::errstr";; - -my $rc = $sth->execute or die DBI->errstr; +print "\nplot"; +for ($iter = 0; $iter < $count; $iter++) { + if ($iter) + { print ","; } + print " '-' using 1:2 with lines"; +} -while(($da,$v) = $sth->fetchrow_array) -{ - print "$da $v\n"; +print "\n"; + +for ($iter = 0; $iter < $count; $iter++) { + + $prog = shift @ARGV; + $test = shift @ARGV; + + $query = "Select RUN, VALUE from Tests where TEST = '$test' AND NAME = '$prog' ORDER BY RUN"; + #print "\n$query\n"; + + my $sth = $dbh->prepare( $query) || die "Can't prepare statement: $DBI::errstr";; + + my $rc = $sth->execute or die DBI->errstr; + + while(($da,$v) = $sth->fetchrow_array) + { + print "$da $v\n"; + } + + print "e\n"; } -print "e\n"; # disconnect from database $dbh->disconnect;