code cleanup

This commit is contained in:
Dietmar Maurer 2016-12-28 11:34:01 +01:00
parent c43015a591
commit 75b024bbac
2 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,8 @@
#!/usr/bin/perl -w
#!/usr/bin/perl
use lib '../../';
use strict;
use warnings;
use Time::HiRes qw( usleep ualarm gettimeofday tv_interval );
use PVE::INotify;
use PVE::AccessControl;
@ -12,6 +13,6 @@ my $hostname = PVE::INotify::read_file("hostname");
# but we can simply create a ticket if we are root
my $ticket = PVE::AccessControl::assemble_ticket('root@pam');
my $cmd = "ab -c 2 -n 1000 -C 'PVEAuthCookie=$ticket' https://$hostname:8006/api2/json";
my $cmd = "ab -c 10 -n 1000 -C 'PVEAuthCookie=$ticket' https://$hostname:8006/api2/json";
print "$cmd\n";
system($cmd) == 0 || die "command failed - $!\n";

View File

@ -1,7 +1,8 @@
#!/usr/bin/perl -w
#!/usr/bin/perl
use lib '../../';
use strict;
use warnings;
use Time::HiRes qw( usleep ualarm gettimeofday tv_interval );
use PVE::INotify;
use PVE::AccessControl;
@ -15,7 +16,7 @@ my $hostname = PVE::INotify::read_file("hostname");
# but we can simply create a ticket if we are root
my $ticket = PVE::AccessControl::assemble_ticket('root@pam');
my $wcount = 1;
my $wcount = 10;
my $qcount = 100;
sub test_rpc {
@ -65,6 +66,4 @@ sub run_tests {
print "$host: $tpq ms per query\n";
}
# why is this faster than LWP::UserAgent?
run_tests($hostname); # test 'apache'
run_tests($hostname); # test 'pveproxy'