1. 20 8月, 2014 1 次提交
  2. 08 5月, 2014 1 次提交
  3. 01 5月, 2014 1 次提交
  4. 16 4月, 2014 1 次提交
  5. 26 3月, 2014 4 次提交
  6. 16 3月, 2014 5 次提交
  7. 04 2月, 2014 2 次提交
  8. 31 1月, 2014 1 次提交
  9. 21 1月, 2014 2 次提交
  10. 19 12月, 2013 1 次提交
    • C
      virt: change test entry point method name · 6124219f
      Cleber Rosa 提交于
      There's no need to have the name of the "run_<name>" method (main
      test entry point) depend on the test name. So, for simplicity sake,
      let's just name the test entry point "run".
      
      I have decided to not fallback gracefully to the previous naming
      convention as I believe this can lead to confusion in the future.
      Signed-off-by: NCleber Rosa <crosa@redhat.com>
      6124219f
  11. 21 11月, 2013 1 次提交
    • L
      virttest.utils_env: Solve the env["address_cache"] RuntimeError issue · 351091c1
      Lucas Meneghel Rodrigues 提交于
      There is a background tcpdump thread that records DHCP leases
      in the env["address_cache"] dictionary. Sometimes, this thread
      might write to this dictionary while the environment object is
      being saved, triggering a RuntimeError in virt-test.
      
      So the solution involves:
      
      1) Creating a save lock, (a threading reentrant lock object),
      that is acquired by the env.save() method when it wants to
      save env.data to a pickle file, and for methods that alter
      env.data.
      
      2) Move the tcpdump thread to a env object attribute, rather
      than one of the keys of env.data, given that the lock object
      can't be pickled.
      
      With the implementation of env.save_lock, we can also fix
      the problem identified by the locking unittest. The base of
      the solution was Pavel's idea, including a good deal of the
      implementation, so kudos to him.
      Signed-off-by: NPavel Hrdina <phrdina@redhat.com>
      Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
      351091c1
  12. 18 11月, 2013 1 次提交
  13. 01 11月, 2013 2 次提交
  14. 09 10月, 2013 1 次提交
    • Y
      virt.tests: Updates to netperf · 59b88171
      Yunping Zheng 提交于
      Get netperf src package from web;
      Make the script compatible with netperf 2.6.0;
      Modify the method of get winutils vol;
      Modify the method of start netserver in windows guest
      Using wait_for  to wait until all net perf clients start to work;
      Reorganize the configure file.
      Signed-off-by: NYunping Zheng <yunzheng@redhat.com>
      59b88171
  15. 10 9月, 2013 1 次提交
  16. 09 9月, 2013 1 次提交
    • L
      PEP8 mass fixes · 2017db91
      Lucas Meneghel Rodrigues 提交于
      With the help of the PEP8 script, a semi-automated clean
      of the code base was made, and effectively changing some
      of the coding style rules of our code base:
      
       * No more 2 lines spacing among functions
       * No more combined module imports
      
      In the end, it was going to be too difficult to take
      into consideration E501 (line length > 80) errors and
      W601 (.has_key() is deprecated), so these were ignored,
      at least for now.
      Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
      2017db91
  17. 09 7月, 2013 1 次提交
  18. 06 6月, 2013 3 次提交
  19. 06 3月, 2013 1 次提交
    • A
      netperf: introduce an agent to launch client sessions · f347f4b4
      Amos Kong 提交于
      Currently we use many threads/heavy control sessions to launch many
      clients, Autotest takes too much of the host resources.
      
      This patch introduces an agent script, it'll be executed inside the
      client system to launch multiple sessions, and Autotest only needs
      to use one background thread to control clients.
      
      We can consider to process the raw results in this agent script in
      future, if it can help to simplify the case.
      Signed-off-by: NAmos Kong <akong@redhat.com>
      f347f4b4
  20. 27 2月, 2013 1 次提交
  21. 29 12月, 2012 2 次提交
  22. 21 12月, 2012 3 次提交
    • A
      netperf: enable demo mode · 1ab28575
      Amos Kong 提交于
      Enable demo mode of netperf, process mixed demo results to drop
      unstable factors, only compute the effective demo results when
      all the threads work. This would make performance result more
      stable.
      
      We start many clients and watch the demo output, if all the threads
      really work, then start to record the interrupt/packet number, and
      count the cpu usage. After a fixed test time, record the final
      interrupt/packet number.
      Signed-off-by: NAmos Kong <akong@redhat.com>
      1ab28575
    • A
      netperf: replace '-b' parameter with multiple threads · 55d380b0
      Amos Kong 提交于
      Currently we use '-b' parameter of netperf to test parallel traffic,
      client would send many requests at start of _RR tests, but it's not
      real parallelism, we want to use demo mode to improve the
      stabilization. This patch removes '-b' parameter and uses multiple
      threads for TCP_RR testing.
      Signed-off-by: NAmos Kong <akong@redhat.com>
      55d380b0
    • A
      netperf: trivial fix of parameter name · 0aca5b6d
      Amos Kong 提交于
      Rename 'client' to 'clients'
      Signed-off-by: NAmos Kong <akong@redhat.com>
      0aca5b6d
  23. 18 12月, 2012 2 次提交
  24. 06 11月, 2012 1 次提交