[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
- Previous message: [otrs-cvs] otrs/scripts DBUpdate-to-2.3-schema.db2.sql, 1.2, 1.3 DBUpdate-to-2.3-schema.maxdb.sql, 1.2, 1.3 DBUpdate-to-2.3-schema.mssql.sql, 1.2, 1.3 DBUpdate-to-2.3-schema.mysql.sql, 1.2, 1.3 DBUpdate-to-2.3-schema.oracle.sql, 1.2, 1.3 DBUpdate-to-2.3-schema.postgresql.sql, 1.2, 1.3
- Next message: [otrs-cvs] otrs/bin otrs.cleanup,1.5,1.6
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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',
- Previous message: [otrs-cvs] otrs/scripts DBUpdate-to-2.3-schema.db2.sql, 1.2, 1.3 DBUpdate-to-2.3-schema.maxdb.sql, 1.2, 1.3 DBUpdate-to-2.3-schema.mssql.sql, 1.2, 1.3 DBUpdate-to-2.3-schema.mysql.sql, 1.2, 1.3 DBUpdate-to-2.3-schema.oracle.sql, 1.2, 1.3 DBUpdate-to-2.3-schema.postgresql.sql, 1.2, 1.3
- Next message: [otrs-cvs] otrs/bin otrs.cleanup,1.5,1.6
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cvs-log
mailing list