[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v7 09/25] tests: Fixes test-replication.c on msys2/mingw.
From: |
Yonggang Luo |
Subject: |
[PATCH v7 09/25] tests: Fixes test-replication.c on msys2/mingw. |
Date: |
Thu, 10 Sep 2020 18:30:43 +0800 |
On Windows there is no path like /tmp/s_local_disk.XXXXXX
Use g_get_tmp_dir instead of /tmp.
Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
---
tests/test-replication.c | 18 ++++++++++++++----
1 file changed, 14 insertions(+), 4 deletions(-)
diff --git a/tests/test-replication.c b/tests/test-replication.c
index 9ab3666a90..e7cbd6b144 100644
--- a/tests/test-replication.c
+++ b/tests/test-replication.c
@@ -23,14 +23,14 @@
/* primary */
#define P_ID "primary-id"
-static char p_local_disk[] = "/tmp/p_local_disk.XXXXXX";
+static char *p_local_disk;
/* secondary */
#define S_ID "secondary-id"
#define S_LOCAL_DISK_ID "secondary-local-disk-id"
-static char s_local_disk[] = "/tmp/s_local_disk.XXXXXX";
-static char s_active_disk[] = "/tmp/s_active_disk.XXXXXX";
-static char s_hidden_disk[] = "/tmp/s_hidden_disk.XXXXXX";
+static char *s_local_disk;
+static char *s_active_disk;
+static char *s_hidden_disk;
/* FIXME: steal from blockdev.c */
QemuOptsList qemu_drive_opts = {
@@ -571,6 +571,11 @@ static void setup_sigabrt_handler(void)
int main(int argc, char **argv)
{
int ret;
+ const char *tmpdir = g_get_tmp_dir();
+ p_local_disk = g_strdup_printf("%s/p_local_disk.XXXXXX", tmpdir);
+ s_local_disk = g_strdup_printf("%s/s_local_disk.XXXXXX", tmpdir);
+ s_active_disk = g_strdup_printf("%s/s_active_disk.XXXXXX", tmpdir);
+ s_hidden_disk = g_strdup_printf("%s/s_hidden_disk.XXXXXX", tmpdir);
qemu_init_main_loop(&error_fatal);
bdrv_init();
@@ -605,5 +610,10 @@ int main(int argc, char **argv)
cleanup_imgs();
+ g_free(p_local_disk);
+ g_free(s_local_disk);
+ g_free(s_active_disk);
+ g_free(s_hidden_disk);
+
return ret;
}
--
2.28.0.windows.1
- [PATCH v7 00/25] W32, W64 msys2/mingw patches, Yonggang Luo, 2020/09/10
- [PATCH v7 01/25] file-win32: Fix "locking" option, Yonggang Luo, 2020/09/10
- [PATCH v7 02/25] rcu: Implement drain_call_rcu, Yonggang Luo, 2020/09/10
- [PATCH v7 03/25] block: Fixes nfs compiling error on msys2/mingw, Yonggang Luo, 2020/09/10
- [PATCH v7 04/25] ci: fixes msys2 build by upgrading capstone to 4.0.2, Yonggang Luo, 2020/09/10
- [PATCH v7 05/25] configure: Fixes ncursesw detection under msys2/mingw and enable curses, Yonggang Luo, 2020/09/10
- [PATCH v7 06/25] win32: Simplify gmtime_r detection direct base on _POSIX_THREAD_SAFE_FUNCTIONS., Yonggang Luo, 2020/09/10
- [PATCH v7 07/25] curses: Fixes curses compiling errors., Yonggang Luo, 2020/09/10
- [PATCH v7 08/25] tests: disable /char/stdio/* tests in test-char.c on win32, Yonggang Luo, 2020/09/10
- [PATCH v7 09/25] tests: Fixes test-replication.c on msys2/mingw.,
Yonggang Luo <=
- [PATCH v7 10/25] tests: test-replication disable /replication/secondary/* on msys2/mingw., Yonggang Luo, 2020/09/10
- [PATCH v7 11/25] osdep: file locking functions are not available on Win32, Yonggang Luo, 2020/09/10
- [PATCH v7 12/25] meson: Use -b to ignore CR vs. CR-LF issues on Windows, Yonggang Luo, 2020/09/10
- [PATCH v7 13/25] gcrypt: test_tls_psk_init should write binary file instead text file., Yonggang Luo, 2020/09/10
- [PATCH v7 14/25] tests: Enable crypto tests under msys2/mingw, Yonggang Luo, 2020/09/10
- [PATCH v7 15/25] meson: remove empty else and duplicated gio deps, Yonggang Luo, 2020/09/10
- [PATCH v7 16/25] vmstate: Fixes test-vmstate.c on msys2/mingw, Yonggang Luo, 2020/09/10