1. 31 8月, 2017 4 次提交
  2. 23 8月, 2017 1 次提交
  3. 22 8月, 2017 1 次提交
  4. 15 8月, 2017 7 次提交
  5. 14 8月, 2017 4 次提交
  6. 11 8月, 2017 3 次提交
    • C
      boot-serial-test: fallback to kvm accelerator · 480bc11e
      Cornelia Huck 提交于
      Currently, at least x86_64 and s390x support building with --disable-tcg.
      Instead of forcing tcg (which causes the test to fail on such builds),
      allow to use kvm as well.
      Reviewed-by: NDaniel P. Berrange <berrange@redhat.com>
      Reviewed-by: NThomas Huth <thuth@redhat.com>
      Signed-off-by: NCornelia Huck <cohuck@redhat.com>
      480bc11e
    • V
      qemu-iotests: fix 185 · 8565c3ab
      Vladimir Sementsov-Ogievskiy 提交于
      185 can sometimes produce wrong output like this:
      
          185 2s ... - output mismatch (see 185.out.bad)
          --- /work/src/qemu/master/tests/qemu-iotests/185.out    2017-07-14 \
              15:14:29.520343805 +0300
          +++ 185.out.bad 2017-08-07 16:51:02.231922900 +0300
          @@ -37,7 +37,7 @@
           {"return": {}}
           {"return": {}}
           {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, \
               "event": "SHUTDOWN", "data": {"guest": false}}
          -{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, \
              "event": "BLOCK_JOB_CANCELLED", "data": {"device": "disk", \
                  "len": 4194304, "offset": 4194304, "speed": 65536, "type": \
                      "mirror"}}
          +{"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, \
              "event": "BLOCK_JOB_CANCELLED", "data": {"device": "disk", \
                  "len": 0, "offset": 0, "speed": 65536, "type": "mirror"}}
      
           === Start backup job and exit qemu ===
      
          Failures: 185
          Failed 1 of 1 tests
      
      This is because, under heavy load, the quit can happen before the first
      iteration of the mirror request has occurred.  To make sure we've had
      time to iterate, let's just add a sleep for 0.5 seconds before quitting.
      Signed-off-by: NVladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
      Reviewed-by: NEric Blake <eblake@redhat.com>
      Signed-off-by: NKevin Wolf <kwolf@redhat.com>
      8565c3ab
    • E
      tests/multiboot: Fix whitespace failure · 01a02ec4
      Eric Blake 提交于
      Commit b43671f8 accidentally broke run_test.sh within tests/multiboot;
      due to a subtle change in whitespace.
      
      These two commands produce theh same output (at least, for sane $IFS
      of space-tab-newline):
      
      echo -e "...$@..."
      echo -e "...$*..."
      
      But that's only because echo inserts spaces between multiple arguments
      (the $@ case), while the $* form gives a single argument to echo with
      the spaces already present.
      
      But when converting to printf %b, there are no automatic spaces between
      multiple arguments, so we HAVE to use $*.
      
      It doesn't help that run_test.sh isn't part of 'make check'.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Signed-off-by: NKevin Wolf <kwolf@redhat.com>
      01a02ec4
  7. 10 8月, 2017 1 次提交
  8. 09 8月, 2017 2 次提交
  9. 08 8月, 2017 3 次提交
  10. 03 8月, 2017 1 次提交
  11. 02 8月, 2017 13 次提交