pass machinemoduleinfo down into getSymbolForDwarfGlobalReference,
[llvm/avr.git] / utils / webNLT.pl
blobfb29fd292e2d8f5e5310d1e5ef53387ee77ff783
1 #!/usr/bin/perl
3 use DBI;
4 use CGI;
6 $q = new CGI;
7 print $q->header();
8 print $q->start_html(-title=>"Nightly Tester DB");
10 unless($q->param('pwd'))
12 print $q->startform();
13 print $q->password_field(-name=>"pwd", -size=>20, -maxlength=>20);
14 print $q->submit();
15 print $q->endform();
17 else
19 # database information
20 $db="llvmalpha";
21 $host="localhost";
22 $userid="llvmdbuser";
23 $passwd=$q->param('pwd');
24 $connectionInfo="dbi:mysql:$db;$host";
26 # make connection to database
27 $dbh = DBI->connect($connectionInfo,$userid,$passwd) or die DBI->errstr;
28 $query = "Select DISTINCT(NAME) from Tests";
29 my $sth = $dbh->prepare($query) || die "Can't prepare statement: $DBI::errstr";
30 my $rc = $sth->execute or die DBI->errstr;
31 while (($n) = $sth->fetchrow_array)
33 push @names, ($n);
34 # print "$n<P>";
36 $query = "Select DISTINCT(TEST) from Tests";
37 my $sth = $dbh->prepare($query) || die "Can't prepare statement: $DBI::errstr";
38 my $rc = $sth->execute or die DBI->errstr;
39 while (($n) = $sth->fetchrow_array)
41 push @tests, ($n);
42 # print "$n\n";
45 # print join "<BR>", @names;
47 print $q->startform();
48 print $q->scrolling_list(-name=>"test", -values=>\@tests, -multiple=>'true');
49 print "<P>";
50 print $q->scrolling_list(-name=>"name", -values=>\@names, -multiple=>'true');
51 print "<P>";
52 print $q->submit();
53 print $q->hidden("pwd", $q->param('pwd'));
54 print $q->endform();
56 # disconnect from database
57 $dbh->disconnect;
59 #now generate the urls to the chart
60 if ($q->param('test') && $q->param('name'))
62 my @names = $q->param('name');
63 my @tests = $q->param('test');
64 print "<P>";
65 print join "<BR>", @names;
66 print "<P>";
67 print join "<BR>", @tests;
68 print "<P>";
69 $str = "pwd=" . $q->param('pwd');
70 $count = 0;
71 foreach $n (@names)
73 foreach $t (@tests)
75 $str = "$str&t$count=$t&n$count=$n";
76 $count++;
79 print "<img src=\"cgiplotNLT.pl?$str\">";
83 print $q->end_html();