]> git.proxmox.com Git - mirror_qemu.git/commitdiff
Merge remote-tracking branch 'remotes/huth-gitlab/tags/pull-request-2019-03-08' into...
authorPeter Maydell <peter.maydell@linaro.org>
Fri, 8 Mar 2019 16:31:34 +0000 (16:31 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Fri, 8 Mar 2019 16:31:34 +0000 (16:31 +0000)
- qtest fixes
- Some generic clean-ups by Philippe
- macOS CI testing via cirrus-ci.com

# gpg: Signature made Fri 08 Mar 2019 08:58:47 GMT
# gpg:                using RSA key 2ED9D774FE702DB5
# gpg: Good signature from "Thomas Huth <th.huth@gmx.de>" [full]
# gpg:                 aka "Thomas Huth <thuth@redhat.com>" [full]
# gpg:                 aka "Thomas Huth <huth@tuxfamily.org>" [full]
# gpg:                 aka "Thomas Huth <th.huth@posteo.de>" [unknown]
# Primary key fingerprint: 27B8 8847 EEE0 2501 18F3  EAB9 2ED9 D774 FE70 2DB5

* remotes/huth-gitlab/tags/pull-request-2019-03-08:
  cirrus.yml: Add macOS continuous integration task
  tests/bios-tables: Improve portability by searching bash in the $PATH
  vhost-user-test: fix leaks
  tests: Do not use "\n" in g_test_message() strings
  hw/devices: Remove unused TC6393XB_RAM definition
  hw: Remove unused 'hw/devices.h' include
  tests: Move qdict-test-data.txt to tests/data/qobject/

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
# Conflicts:
# tests/vhost-user-test.c

1  2 
configure
tests/rtl8139-test.c
tests/vhost-user-test.c

diff --cc configure
Simple merge
Simple merge
index 92dfeeddf48cad0c086290ff753a387d5c64ae42,14a1e2fbac523a00522b05b779f285958a76e8d6..0c965b3b1e1638946e9c8a7d7b510eebb0434c89
@@@ -437,8 -476,8 +437,8 @@@ static const char *init_hugepagefs(void
      }
  
      if (access(path, R_OK | W_OK | X_OK)) {
-         g_test_message("access on path (%s): %s\n", path, strerror(errno));
+         g_test_message("access on path (%s): %s", path, strerror(errno));
 -        abort();
 +        g_test_fail();
          return NULL;
      }
  
      } while (ret != 0 && errno == EINTR);
  
      if (ret != 0) {
-         g_test_message("statfs on path (%s): %s\n", path, strerror(errno));
+         g_test_message("statfs on path (%s): %s", path, strerror(errno));
 -        abort();
 +        g_test_fail();
          return NULL;
      }
  
      if (fs.f_type != HUGETLBFS_MAGIC) {
-         g_test_message("Warning: path not on HugeTLBFS: %s\n", path);
+         g_test_message("Warning: path not on HugeTLBFS: %s", path);
 -        abort();
 +        g_test_fail();
          return NULL;
      }