1
1

Merge pull request #5110 from ninadkhanolkar/monitoring_update

Updated aggregate_profile.pl
Этот коммит содержится в:
bosilca 2018-04-26 22:28:35 +01:00 коммит произвёл GitHub
родитель bf09156d12 1518d7e003
Коммит cdfb7fdc2b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

Просмотреть файл

@ -53,12 +53,13 @@ foreach $id (sort {$a <=> $b} keys %phaseid) {
sub aggregate{
$phase = $_[0];
#Aggregating all files of given phase in files array.This should be done
# before creating $phase.prof to avoid adding $phase.prof to files array
@files = glob ($phase."*");
print "Building $phase.prof\n";
open OUT,">$phase.prof";
@files = glob ($phase."*");
foreach $file ( @files) {
open IN,$file;