зеркало из https://github.com/mozilla/gecko-dev.git
add support for an ALL page.
This commit is contained in:
Родитель
28b599eab9
Коммит
1033dd75d6
|
@ -6,8 +6,8 @@
|
||||||
# tinderbox trees.
|
# tinderbox trees.
|
||||||
|
|
||||||
|
|
||||||
# $Revision: 1.1 $
|
# $Revision: 1.2 $
|
||||||
# $Date: 2001/11/16 20:43:27 $
|
# $Date: 2001/12/03 19:46:04 $
|
||||||
# $Author: kestes%walrus.com $
|
# $Author: kestes%walrus.com $
|
||||||
# $Source: /home/hwine/cvs_conversion/cvsroot/mozilla/webtools/tinderbox2/src/default_conf/ReqData.pm,v $
|
# $Source: /home/hwine/cvs_conversion/cvsroot/mozilla/webtools/tinderbox2/src/default_conf/ReqData.pm,v $
|
||||||
# $Name: $
|
# $Name: $
|
||||||
|
@ -145,13 +145,20 @@ sub tree2queue {
|
||||||
|
|
||||||
# turn a tree name into the name of a its file.
|
# turn a tree name into the name of a its file.
|
||||||
|
|
||||||
sub tree2logfile {
|
sub tree2logfiles {
|
||||||
my ($tree_name) = @_;
|
my ($tree_name) = @_;
|
||||||
|
|
||||||
my $queue_name = tree2queue($tree_name);
|
my $queue_name = tree2queue($tree_name);
|
||||||
my $req_log = "$REQ_HOME/releng-${queue_name}/etc/req-log";
|
|
||||||
|
|
||||||
return $req_log;
|
my @req_logs;
|
||||||
|
if ($tree_name eq 'ALL') {
|
||||||
|
@req_logs = glob "$REQ_HOME/releng-*/etc/req-log";
|
||||||
|
@req_logs = map { main::extract_filename_chars($_) } @req_logs;
|
||||||
|
}else{
|
||||||
|
@req_logs = ("$REQ_HOME/releng-${queue_name}/etc/req-log");
|
||||||
|
}
|
||||||
|
|
||||||
|
return @req_logs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче