https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16140 --- Comment #22 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- (In reply to Jacek Ablewicz from comment #21)
So 232.81 seconds is a total for 100 test runs (1 log in + 1 search taking 2.33 seconds on average), or is it a total for 10 test runs (log in + search taking 23.3 seconds on average)?
From comment 5:
% for i in {1..10}; do {time perl test.t > /dev/null} 2>> /tmp/time;done; echo $((`perl -pe 's/.*cpu ([^s]*) total/$1/' /tmp/time| tr '\n' '+'|sed > 's/+$//'`))
The file test.t is the one attached to this bug report ("file used for benchmarking"), it does 1 run: 1 login + 1 search using Test::WWW::Mechanize. The output will give the total time for the 10 runs
71.23 (7.389+6.932+6.966+6.937+6.941+6.663+7.827+7.237+7.075+7.259)
"71.23" is the output of the previous command and is the addition of the execution times of the 10 runs (1 run takes ~7sec) which are contain in /tmp/time -- You are receiving this mail because: You are watching all bug changes.