1. 13 4月, 2018 2 次提交
  2. 12 4月, 2018 1 次提交
  3. 11 4月, 2018 1 次提交
  4. 10 4月, 2018 1 次提交
  5. 28 10月, 2016 1 次提交
  6. 16 8月, 2016 1 次提交
  7. 18 9月, 2015 1 次提交
  8. 03 8月, 2015 1 次提交
  9. 18 4月, 2015 1 次提交
  10. 17 2月, 2015 1 次提交
  11. 01 5月, 2014 2 次提交
  12. 01 4月, 2014 1 次提交
    • X
      qemu.tests: add new test block_hotplug_check · b8dd8c51
      Xu Tian 提交于
      changes from v1:
          add windows guest support;
      
      changes from v2:
          remove extra image params in cfg and generate it by script
          fix issue that failed to check device id at rhel7 host
          limited test on Host_RHEL
      changes form v3:
          fix typo error
          fix pep8 isssue
      Signed-off-by: NXu Tian <xutian@redhat.com>
      b8dd8c51
  13. 21 3月, 2014 1 次提交
  14. 21 1月, 2014 2 次提交
  15. 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
  16. 14 11月, 2013 1 次提交
    • F
      qemu.tests.pci_hotplug: Make device_add_nic and device_add_block have same parameters · 7481c6a2
      Feng Yang 提交于
      Add a useless parameter in device_add_block().
      
      These two function called by following code:
              try:
                  # get function for adding device.
                  add_fuction = local_functions["%s_%s" % (cmd_type, pci_type)]
              except Exception:
                  raise error.TestError("No function for adding '%s' dev with '%s'" %
                                        (pci_type, cmd_type))
              after_add = None
              if add_fuction:
                  # Do add pci device.
                  after_add = add_fuction(pci_num, queues)
      
      So they must have same parameters.
      Now we meet error:
      TypeError: device_add_block() takes exactly 1 argument (2 given)
      Signed-off-by: NFeng Yang <fyang@redhat.com>
      7481c6a2
  17. 05 11月, 2013 1 次提交
  18. 02 11月, 2013 1 次提交
  19. 22 10月, 2013 1 次提交
  20. 13 9月, 2013 1 次提交
  21. 10 9月, 2013 1 次提交
  22. 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
  23. 19 7月, 2013 1 次提交
    • A
      enable mq feature in qemu cmdline/commands · f3019ff0
      Amos Kong 提交于
      MQ was disabled in qemu by default, this patch enables it
      if user assigns multiple queues, hotplug cases will hotadd
      MQ nics.
      
      | commit 32ab06bcf1352848eec42629a85e20efa4e105dc
      | Author: Jesse Larrew <jlarrew@linux.vnet.ibm.com>
      | Date:   Tue Feb 5 17:47:17 2013 -0600
      |
      |     hw/virtio-net: disable multiqueue by default
      |
      |     The new multiqueue feature adds fields to the virtio device config, which
      |     breaks Windows guests. Disable the feature by default until the Windows
      |     drivers are fixed.
      Signed-off-by: NAmos Kong <akong@redhat.com>
      f3019ff0
  24. 06 6月, 2013 5 次提交
  25. 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
  26. 29 12月, 2012 1 次提交
  27. 25 12月, 2012 1 次提交
  28. 30 10月, 2012 1 次提交
  29. 07 9月, 2012 2 次提交