1. 13 9月, 2018 2 次提交
  2. 12 9月, 2018 7 次提交
  3. 11 9月, 2018 1 次提交
  4. 07 9月, 2018 9 次提交
  5. 06 9月, 2018 4 次提交
  6. 05 9月, 2018 1 次提交
  7. 04 9月, 2018 10 次提交
  8. 29 8月, 2018 2 次提交
    • L
      qemu: Validate memory access during validate domain config · fe67e3e2
      Luyao Huang 提交于
      Commit 6534b3c4 tried to raise an error when there is no numa
      nodes by setting access='shared' in the domain config, but added
      a helper called from qemuDomainDeviceDefValidate instead of a
      helper called from qemuDomainDefValidate for XML:
      
        <memoryBacking>
          <hugepages/>
          <access mode='shared'/>
        </memoryBacking>
      
      Since there are no memory devices in the test XML, there would
      be no validation failure, but the test added was still failing.
      Investigating that it turns out that unnecessary XML elements
      were causing the failure (no need for <video>, <graphics>,
      <pm>, usb controller model "piix3-uhci", disk attribute for
      "discard='unmap'", <serial>, <console>, <channel> and a
      memballoon model). Removing all those before moving the method
      caused the test to succeed.
      
      So this patch moves the validation to the right place and
      removes all the unnecessary XML pieces that were causing
      a false validation failure.
      
      https://bugzilla.redhat.com/show_bug.cgi?id=1448149#c14Signed-off-by: NLuyao Huang <lhuang@redhat.com>
      Reviewed-by: NJohn Ferlan <jferlan@redhat.com>
      fe67e3e2
    • S
      vsh-table: Fix broken build on centos and rhel · 2853a53f
      Simon Kobyda 提交于
      The reason of broken build was that centos and rhel use older version of
      glibc. These versions of glibc on these platforms cannot work with newer
      unicodes, thus causing functions iswprint() and wcwidth() return
      unexpected values causing the vshtabletest to fail. Therefore, let's
      replace the new unicode characters causing issues with some older ones
      to fix the test suite, as the issue would still persist during runtime.
      Signed-off-by: NSimon Kobyda <skobyda@redhat.com>
      Reviewed-by: NErik Skultety <eskultet@redhat.com>
      2853a53f
  9. 28 8月, 2018 4 次提交