[otrs-cvs] otrs/scripts/test Performance.t,1.3,1.4

CVS commits notifications of OTRS.org cvs-log at otrs.org
Wed Apr 30 07:33:04 GMT 2008


Comments:
Update of /home/cvs/otrs/scripts/test
In directory lancelot:/tmp/cvs-serv12869/scripts/test

Modified Files:
	Performance.t 
Log Message:
Fixed "Unquoted string" warning.

Author: mh

Index: Performance.t
===================================================================
RCS file: /home/cvs/otrs/scripts/test/Performance.t,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Performance.t	10 Apr 2008 17:39:48 -0000	1.3
--- Performance.t	30 Apr 2008 07:32:59 -0000	1.4
***************
*** 20,24 ****
  # use - load classes
  #----------------------------------#
! my $StartUse = [gettimeofday];
  
  use Kernel::System::AuthSession;
--- 20,24 ----
  # use - load classes
  #----------------------------------#
! my $StartUse = [gettimeofday()];
  
  use Kernel::System::AuthSession;
***************
*** 77,81 ****
  #-----------------------------------------#
  
! my $StartMostImportantUser = [gettimeofday];
  my %UserList = $Self->{UserObject}->UserList(
      Type  => 'Short',
--- 77,81 ----
  #-----------------------------------------#
  
! my $StartMostImportantUser = [gettimeofday()];
  my %UserList = $Self->{UserObject}->UserList(
      Type  => 'Short',
***************
*** 143,147 ****
  # GetOverTimeTickets
  #----------------------------------#
! my $StartGetOverTimeTickets = [gettimeofday];
  my @EscalationTickets = $Self->{TicketObject}->GetOverTimeTickets( UserID => 1 );
  
--- 143,147 ----
  # GetOverTimeTickets
  #----------------------------------#
! my $StartGetOverTimeTickets = [gettimeofday()];
  my @EscalationTickets = $Self->{TicketObject}->GetOverTimeTickets( UserID => 1 );
  
***************
*** 156,160 ****
  # NavigationBar
  #----------------------------------#
! my $StartNavigationBar = [gettimeofday];
  my $Output = $Self->{LayoutObject}->NavigationBar();
  $DiffTime = tv_interval($StartNavigationBar);
--- 156,160 ----
  # NavigationBar
  #----------------------------------#
! my $StartNavigationBar = [gettimeofday()];
  my $Output = $Self->{LayoutObject}->NavigationBar();
  $DiffTime = tv_interval($StartNavigationBar);
***************
*** 173,177 ****
      UserID    => 1,
  );
! my $StartShowTicket = [gettimeofday];
  
  for my $TicketID (@TicketIDs) {
--- 173,177 ----
      UserID    => 1,
  );
! my $StartShowTicket = [gettimeofday()];
  
  for my $TicketID (@TicketIDs) {
***************
*** 199,203 ****
  # code artefact to get the needed outputtime for the $TicketObject->ShownTicket function
  # use Time::HiRes qw(gettimeofday tv_interval);
! #my $StartUse = [gettimeofday];
  #        my $Output = $Self->{LayoutObject}->Output(
  #            TemplateFile => 'AgentTicketQueueTicketView',
--- 199,203 ----
  # code artefact to get the needed outputtime for the $TicketObject->ShownTicket function
  # use Time::HiRes qw(gettimeofday tv_interval);
! #my $StartUse = [gettimeofday()];
  #        my $Output = $Self->{LayoutObject}->Output(
  #            TemplateFile => 'AgentTicketQueueTicketView',


More information about the cvs-log mailing list