1. 13 4月, 2018 1 次提交
  2. 11 4月, 2018 1 次提交
  3. 02 4月, 2018 1 次提交
  4. 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
  5. 18 9月, 2015 1 次提交
  6. 01 5月, 2014 2 次提交
  7. 28 1月, 2014 1 次提交
  8. 21 1月, 2014 1 次提交
  9. 28 12月, 2013 3 次提交
  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. 02 12月, 2013 1 次提交
  12. 10 10月, 2013 1 次提交
  13. 04 10月, 2013 1 次提交
  14. 26 9月, 2013 1 次提交
  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. 25 7月, 2013 1 次提交
  18. 18 6月, 2013 1 次提交
  19. 14 6月, 2013 1 次提交
    • L
      lib namespace: Remove unnecessary init files · fbfeaa8c
      Lucas Meneghel Rodrigues 提交于
      Those files were added there mainly to mirror qemu,
      since that is used as a module, since for that
      case we do use things like
      
      from qemu.tests import block_copy
      
      That's not needed for libvirt, and we'd like to
      dump it from qemu as well, although it needs
      more care.
      
      This solves a problem where it's not possible
      to import the python library bindings on virt-test,
      since the libvirt module present in virt-test would
      take precedence over the library installed system
      wide.
      Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
      fbfeaa8c
  20. 06 6月, 2013 1 次提交
  21. 03 4月, 2013 2 次提交
  22. 01 3月, 2013 1 次提交
  23. 22 2月, 2013 1 次提交
    • P
      cfg: add variants for machine_type · 843c5a42
      Paolo Bonzini 提交于
      Also select the machine type in guest-hw.  This is also useful to specify
      versioned machine types in a cartesian config file.  Something like this:
      
          i440fx:
               variants:
               - i440fx-1.0:
                    machine_type=pc-1.0
               - i440fx-1.1:
                    machine_type=pc-1.1
               - i440fx-1.2:
                    machine_type=pc-1.2
      
      lets you run the test multiple times on all versioned types.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      843c5a42
  24. 30 1月, 2013 1 次提交
  25. 10 1月, 2013 1 次提交
  26. 08 1月, 2013 1 次提交
  27. 07 1月, 2013 1 次提交
  28. 29 12月, 2012 1 次提交
  29. 25 12月, 2012 1 次提交
  30. 19 12月, 2012 2 次提交
  31. 12 12月, 2012 1 次提交
  32. 06 12月, 2012 1 次提交
  33. 05 12月, 2012 1 次提交
    • L
      virttest: Add bootstrap library · 4cc46420
      Lucas Meneghel Rodrigues 提交于
      In order to organize our shared libraries better, we
      have to slowly take functions from utils_misc and move
      to other smaller, more specialized libraries. Let's
      start by doing this with the bootstrap code [1], and
      move it to a library called 'bootstrap'.
      
      [1] Code that copies the correct config sample files
      to the right places, as well as verifies whether the
      JeOS image is available.
      Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
      4cc46420
  34. 29 11月, 2012 1 次提交
  35. 23 11月, 2012 1 次提交