qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] tests/migration: Disable /migration/postcopy/unix q


From: Philippe Mathieu-Daudé
Subject: [Qemu-devel] [PATCH] tests/migration: Disable /migration/postcopy/unix qtest on Travis-CI
Date: Tue, 28 May 2019 15:51:44 +0200

This started to fail 6 months ago [1] and lately occurs too
often on the main Travis CI.

Travis CI set the CONTINUOUS_INTEGRATION variable in the process
environment [2]. Let's use it to disable it when running this test
there.

[1] https://travis-ci.org/philmd/qemu/jobs/466594203#L4430
[2] 
https://docs.travis-ci.com/user/environment-variables/#default-environment-variables

Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
---
 tests/migration-test.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tests/migration-test.c b/tests/migration-test.c
index bd3f5c3125..c5091e1fb1 100644
--- a/tests/migration-test.c
+++ b/tests/migration-test.c
@@ -764,6 +764,11 @@ static void test_postcopy(void)
 {
     QTestState *from, *to;
 
+    if (getenv("CONTINUOUS_INTEGRATION")) {
+        /* Test failing on Travis-CI */
+        g_test_skip("Running on Travis-CI");
+    }
+
     if (migrate_postcopy_prepare(&from, &to, false)) {
         return;
     }
-- 
2.20.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]