]> rtime.felk.cvut.cz Git - lisovros/qemu_apohw.git/commitdiff
Revert "qtest: Fix crash if SIGABRT during qtest_init()"
authorStefan Hajnoczi <stefanha@redhat.com>
Thu, 27 Mar 2014 14:09:49 +0000 (15:09 +0100)
committerAndreas Färber <afaerber@suse.de>
Mon, 31 Mar 2014 20:20:04 +0000 (22:20 +0200)
It turns out there are test cases that use multiple libqtest instances.
We cannot use a global qtest instance in the SIGABRT handler.

This reverts commit cb201b4872f16dfbce63f8648b2584631e2e965f.

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Marcel Apfelbaum <marcel.a@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
tests/libqtest.c
tests/libqtest.h

index b03b57a3db1c99749c873b43c25a660e0d731548..2b90e4a76ee329007409a1c95bf424c380d590a9 100644 (file)
@@ -120,7 +120,7 @@ QTestState *qtest_init(const char *extra_args)
     qemu_binary = getenv("QTEST_QEMU_BINARY");
     g_assert(qemu_binary != NULL);
 
-    global_qtest = s = g_malloc(sizeof(*s));
+    s = g_malloc(sizeof(*s));
 
     socket_path = g_strdup_printf("/tmp/qtest-%d.sock", getpid());
     qmp_socket_path = g_strdup_printf("/tmp/qtest-%d.qmp", getpid());
@@ -181,7 +181,6 @@ QTestState *qtest_init(const char *extra_args)
 void qtest_quit(QTestState *s)
 {
     sigaction(SIGABRT, &s->sigact_old, NULL);
-    global_qtest = NULL;
 
     kill_qemu(s);
     close(s->fd);
index 27a58fdb1c08f105321e80c443bdb424be5e8901..8268c098bf8f85739d0679c20d47d0f00d167c66 100644 (file)
@@ -335,7 +335,8 @@ void qtest_add_func(const char *str, void (*fn));
  */
 static inline QTestState *qtest_start(const char *args)
 {
-    return qtest_init(args);
+    global_qtest = qtest_init(args);
+    return global_qtest;
 }
 
 /**
@@ -346,6 +347,7 @@ static inline QTestState *qtest_start(const char *args)
 static inline void qtest_end(void)
 {
     qtest_quit(global_qtest);
+    global_qtest = NULL;
 }
 
 /**