1. 17 7月, 2020 1 次提交
  2. 02 7月, 2020 1 次提交
  3. 12 11月, 2019 1 次提交
  4. 17 9月, 2019 1 次提交
  5. 31 7月, 2018 1 次提交
  6. 09 7月, 2018 1 次提交
  7. 28 6月, 2018 1 次提交
  8. 16 5月, 2018 1 次提交
  9. 25 4月, 2018 1 次提交
  10. 13 4月, 2018 1 次提交
  11. 12 4月, 2018 2 次提交
  12. 11 4月, 2018 1 次提交
  13. 09 4月, 2018 1 次提交
  14. 02 11月, 2016 1 次提交
  15. 22 8月, 2016 2 次提交
  16. 30 5月, 2016 1 次提交
  17. 20 1月, 2016 1 次提交
  18. 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
  19. 23 6月, 2015 1 次提交
  20. 12 12月, 2014 1 次提交
  21. 05 6月, 2014 1 次提交
  22. 01 5月, 2014 2 次提交
  23. 02 3月, 2014 1 次提交
    • C
      qemu-img.commit test correction · 84324b29
      Cong Li 提交于
      1. Correct the file name.
         The original image is what is generally called the backing file,
         whereas the new image you created is an overlay.
      
      2. Remove the step which boot up the backing file before commit.
         It is not allowed to boot up the backing file before commit.
         If you have boot up, you have written to the backing file,
         which is likely to destory data on the overlays.
      Signed-off-by: NCong Li <coli@redhat.com>
      84324b29
  24. 21 2月, 2014 1 次提交
  25. 19 2月, 2014 2 次提交
  26. 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
  27. 10 9月, 2013 1 次提交
  28. 09 9月, 2013 2 次提交
  29. 02 9月, 2013 1 次提交
  30. 23 8月, 2013 1 次提交
  31. 07 8月, 2013 1 次提交
  32. 20 6月, 2013 1 次提交
  33. 04 4月, 2013 1 次提交
    • L
      qemu.tests: Use params[] for required params · a9f0d2c5
      Lukáš Doktor 提交于
      This patch benefits from the better error message when key is missing
      in config params. Instead of custom handling of missing param it
      uses params[] directly.
      
      I modified those params, where I was 100% certain that they are
      required and doesn't have default value:
       * val = params.get(..) followed by if not val: raise...
       * int(params.get(...))
       * params.get(...).split()
       * commands which require string (eg. session.cmd(params.get(...)))
      
      I didn't test all the tests before and after in order to verify
      possible typos but I used pylint before and after, watching for
      new errors (code rate before and after).
      Signed-off-by: NLukáš Doktor <ldoktor@redhat.com>
      a9f0d2c5
  34. 25 12月, 2012 1 次提交
  35. 30 11月, 2012 1 次提交