diff options
author | Yonggang Luo <luoyonggang@gmail.com> | 2020-09-10 18:30:50 +0800 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2020-09-16 08:41:06 +0200 |
commit | 96c64746bf5154fdce3011391362fdcddfe1aa37 (patch) | |
tree | a043229abd4f2ba5f13008783235505316c0289b /tests | |
parent | e0d3d8015f858f4d8d2a846d5909f57b709bf2b5 (diff) | |
download | qemu-96c64746bf5154fdce3011391362fdcddfe1aa37.zip qemu-96c64746bf5154fdce3011391362fdcddfe1aa37.tar.gz qemu-96c64746bf5154fdce3011391362fdcddfe1aa37.tar.bz2 |
vmstate: Fixes test-vmstate.c on msys2/mingw
The vmstate are valid on win32, just need generate tmp path properly
Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20200910103059.987-17-luoyonggang@gmail.com>
[thuth: Make indentation a little bit nicer]
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-vmstate.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test-vmstate.c b/tests/test-vmstate.c index 1c76301..a001879 100644 --- a/tests/test-vmstate.c +++ b/tests/test-vmstate.c @@ -34,7 +34,6 @@ #include "qemu/module.h" #include "io/channel-file.h" -static char temp_file[] = "/tmp/vmst.test.XXXXXX"; static int temp_fd; @@ -1484,6 +1483,8 @@ static void test_tmp_struct(void) int main(int argc, char **argv) { + g_autofree char *temp_file = g_strdup_printf("%s/vmst.test.XXXXXX", + g_get_tmp_dir()); temp_fd = mkstemp(temp_file); module_call_init(MODULE_INIT_QOM); |