bldsystemtools/commonbldutils/PC_P4Table.pl
changeset 0 83f4b4db085c
child 1 d4b442d23379
equal deleted inserted replaced
-1:000000000000 0:83f4b4db085c
       
     1 # Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 # All rights reserved.
       
     3 # This component and the accompanying materials are made available
       
     4 # under the terms of "Eclipse Public License v1.0"
       
     5 # which accompanies this distribution, and is available
       
     6 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 #
       
     8 # Initial Contributors:
       
     9 # Nokia Corporation - initial contribution.
       
    10 #
       
    11 # Contributors:
       
    12 #
       
    13 # Description:
       
    14 # Script to generate a html report giving basic info on build.
       
    15 # It needs to be run in the context of a build client, otherwise
       
    16 # it would not generate the complete report as it uses the ENV
       
    17 # variables for most of the information.
       
    18 # 
       
    19 #
       
    20 
       
    21 use strict;
       
    22 use FindBin;
       
    23 use lib "$FindBin::Bin";
       
    24 use PC_P4Table;
       
    25 
       
    26 use Getopt::Long;
       
    27 
       
    28 
       
    29 my $iClientSpec = $ENV{CurrentCodeline} . "/".$ENV{Platform}."/generic/utils/".$ENV{Platform}."_clientspec.txt";
       
    30 
       
    31 &PC_P4Table::generateHTMLSummary($ENV{SnapshotNumber},
       
    32 				 $ENV{Product},
       
    33 				 $ENV{ChangelistNumber},
       
    34 				 $iClientSpec);
       
    35 
       
    36