1. 24 7月, 2017 1 次提交
  2. 07 6月, 2017 1 次提交
  3. 05 6月, 2017 2 次提交
    • M
      Reset the whole stack in testutils · f4c09b91
      Martin Kletzander 提交于
      The memset() was resetting only 30 bytes in the array (size of the
      array), but it is array of pointers.  Since it is a static array,
      let's just reset it by its size.
      
      Found by gcc-7.1:
      
        testutils.c: In function 'virTestRun':
        testutils.c:243:13: error: 'memset' used with length equal to number
        of elements without multiplication by element size [-Werror=memset-elt-size]
          memset(testAllocStack, 0, ARRAY_CARDINALITY(testAllocStack));
          ^~~~~~
      Signed-off-by: NMartin Kletzander <mkletzan@redhat.com>
      f4c09b91
    • M
      virDomainXMLOption: Introduce virDomainABIStabilityDomain · 4f0aeed8
      Michal Privoznik 提交于
      While checking for ABI stability, drivers might pose additional
      checks that are not valid for general case. For instance, qemu
      driver might check some memory backing attributes because of how
      qemu works. But those attributes may work well in other drivers.
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      4f0aeed8
  4. 04 4月, 2017 1 次提交
  5. 28 3月, 2017 1 次提交
  6. 23 3月, 2017 1 次提交
  7. 10 10月, 2016 1 次提交
  8. 26 9月, 2016 1 次提交
  9. 20 9月, 2016 1 次提交
    • L
      tests: fix use of fixedcontent variable · 4e2d642a
      Laine Stump 提交于
      Commit 85635600 switched from
      hardcoded use of strcontent to hardcoded use of fixedcontent
      (fixedcontent is *sometimes* a copy of strcontent with a \n
      appended). This was a problem because sometimes fixedcontent is *not*
      a copy of strcontent, but is instead NULL, leading to the regenerated
      test case output being a 0 length file.
      
      This patch creates a new const char *cmpcontent initialized to
      strcontent, but changed to fixedcontent if/when fixedcontent is
      created, then always uses cmpcontent instead of (str|fixed)content.
      4e2d642a
  10. 15 9月, 2016 1 次提交
  11. 25 8月, 2016 1 次提交
    • P
      conf: Add XML for individual vCPU hotplug · 5847bc5c
      Peter Krempa 提交于
      Individual vCPU hotplug requires us to track the state of any vCPU. To
      allow this add the following XML:
      
      <domain>
        ...
        <vcpu current='2'>3</vcpu>
        <vcpus>
          <vcpu id='0' enabled='yes' hotpluggable='no' order='1'/>
          <vcpu id='1' enabled='yes' hotpluggable='yes' order='2'/>
          <vcpu id='1' enabled='no' hotpluggable='yes'/>
        </vcpus>
        ...
      
      The 'enabled' attribute allows to control the state of the vcpu.
      'hotpluggable' controls whether given vcpu can be hotplugged and 'order'
      allows to specify the order to add the vcpus.
      5847bc5c
  12. 12 7月, 2016 2 次提交
    • J
      testutils: only rewrap args files · cc04181a
      Ján Tomko 提交于
      test-wrap-argv.pl does not know how to rewrap other files.
      cc04181a
    • J
      testutils: find perl early · bd6708a8
      Ján Tomko 提交于
      Commit 843a70a8 changed test-wrap-argv.pl to use
      /usr/bin/env perl
      instead of
      /usr/bin/perl
      
      However when called from qemuxml2argvtest with
      VIR_TEST_REGENERATE_OUTPUT, PATH is set to '/bin'.
      
      Find the path to perl early in virTestMain, in case we
      are going to need it later after we've overridden PATH.
      bd6708a8
  13. 24 6月, 2016 1 次提交
    • P
      tests: utils: Fail XML file comparison if input file doesn't exist · cb049b9a
      Peter Krempa 提交于
      In cases where we expect parse failure of the test input file the
      testsuite can't differentiate if the parser failed when parsing or when
      opening the file. Add a call to virFileExists and error out on missing
      input files.
      
      Missing output files are partially expected when regenerating test
      output.
      cb049b9a
  14. 22 6月, 2016 1 次提交
  15. 20 6月, 2016 1 次提交
  16. 14 6月, 2016 1 次提交
    • J
      xenconfig: support bios=ovmf xl.cfg · 53d98cce
      Jim Fehlig 提交于
      Add support to xenconfig for conversion of xl.cfg(5) bios config
      to/from libvirt domXml <loader> config. SeaBIOS is the default
      for HVM guests using upstream QEMU. ROMBIOS is the default when
      using the old qemu-dm. This patch allows specifying OVMF as an
      alternate firmware.
      
      Example xl.cfg:
        bios = "ovmf"
      
      Example domXML:
        <os>
          ...
          <loader readonly='yes' type='pflash'>/usr/lib/xen/boot/ovmf.bin</loader>
        </os>
      
      Note that currently Xen does not support a separate nvram for
      non-volatile variables.
      Signed-off-by: NJim Fehlig <jfehlig@suse.com>
      53d98cce
  17. 08 6月, 2016 19 次提交
  18. 20 5月, 2016 1 次提交
  19. 14 5月, 2016 1 次提交
    • M
      virtestmock: Print invalid file accesses into a file · 6326865e
      Michal Privoznik 提交于
      All the accesses to files outside our build or source directories
      are now identified and appended into a file for later processing.
      The location of the file that contains all the records can be
      controlled via VIR_TEST_FILE_ACCESS env variable and defaults to
      abs_builddir "/test_file_access.txt".
      
      The script that will process the access file is to be added in
      next commit.
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      6326865e
  20. 15 4月, 2016 1 次提交