1. 14 6月, 2017 1 次提交
  2. 11 4月, 2016 1 次提交
  3. 07 4月, 2016 1 次提交
  4. 31 3月, 2016 1 次提交
  5. 18 3月, 2016 1 次提交
  6. 21 9月, 2015 1 次提交
    • L
      tp-qemu: Import cleanups · 288ce897
      Lucas Meneghel Rodrigues 提交于
      Clean up imports across the board in tp-qemu. The criteria
      followed was:
      
      1) Remove unnecessary imports
      2) Turn multi imports from a single entry point to one
         import per line. This increases both patch and
         source code readability.
      3) Separate blocks of imports with a line:
         * Python standard library imports
         * Autotest imports
         * virttest imports
         * Internal tp-qemu imports
      4) Remove try/except blocks refering autotest libs and
         stick with the virttest.staging copy
      
      This paves the way for the future removal of autotest
      references, replacing those references with avocado ones.
      Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
      288ce897
  7. 17 2月, 2015 1 次提交
  8. 20 8月, 2014 1 次提交
  9. 08 5月, 2014 1 次提交
  10. 01 5月, 2014 1 次提交
  11. 16 4月, 2014 1 次提交
  12. 26 3月, 2014 4 次提交
  13. 16 3月, 2014 5 次提交
  14. 04 2月, 2014 2 次提交
  15. 31 1月, 2014 1 次提交
  16. 21 1月, 2014 2 次提交
  17. 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
  18. 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
  19. 18 11月, 2013 1 次提交
  20. 01 11月, 2013 2 次提交
  21. 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
  22. 10 9月, 2013 1 次提交
  23. 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
  24. 09 7月, 2013 1 次提交
  25. 06 6月, 2013 3 次提交
  26. 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
  27. 27 2月, 2013 1 次提交
  28. 29 12月, 2012 1 次提交