1. 20 3月, 2020 1 次提交
  2. 12 4月, 2018 1 次提交
  3. 11 4月, 2018 1 次提交
  4. 09 4月, 2018 1 次提交
  5. 18 8月, 2017 2 次提交
  6. 13 7月, 2017 1 次提交
  7. 20 7月, 2016 1 次提交
    • L
      qemu.tests.usb_storage: Fix serial params errors · 1eb492e5
      Lin Ma 提交于
      The usb_storage tests report couple of errors, says:
      * missing blk_extra_params_stg
      * Expected: '520fa169-32f8-431f-9f1e-70992671d2e5', Actual: 'TARGET_DISK0'
      ('520fa169-..' is generated dynamically, 'TARGET_..' is my blk_extra_params_stg)
      * Can not get drive path by id 'NO_EQUAL_STRING
      * Can not get drive path by id 'EMPTY_STRING'
      
      This patch fixes above issues.
      Signed-off-by: NLin Ma <lma@suse.com>
      1eb492e5
  8. 18 9月, 2015 1 次提交
  9. 12 2月, 2015 1 次提交
  10. 09 12月, 2014 1 次提交
  11. 01 5月, 2014 1 次提交
  12. 14 3月, 2014 1 次提交
  13. 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
  14. 10 9月, 2013 1 次提交
  15. 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
  16. 27 6月, 2013 1 次提交
  17. 06 6月, 2013 3 次提交
  18. 14 5月, 2013 1 次提交
  19. 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
  20. 05 3月, 2013 1 次提交
  21. 25 12月, 2012 1 次提交
  22. 07 9月, 2012 1 次提交