summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/runtime/cases/rpm.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/runtime/cases/rpm.py b/meta/lib/oeqa/runtime/cases/rpm.py
index 2b6cfe5ff2..203fcc8505 100644
--- a/meta/lib/oeqa/runtime/cases/rpm.py
+++ b/meta/lib/oeqa/runtime/cases/rpm.py
@@ -57,8 +57,8 @@ class RpmBasicTest(OERuntimeTestCase):
57 return 57 return
58 time.sleep(1) 58 time.sleep(1)
59 user_pss = [ps for ps in output.split("\n") if u + ' ' in ps] 59 user_pss = [ps for ps in output.split("\n") if u + ' ' in ps]
60 msg = "There're %s 's process(es) still running: %s".format(u, "\n".join(user_pss)) 60 msg = "User %s has processes still running: %s" % (u, "\n".join(user_pss))
61 assertTrue(True, msg=msg) 61 self.fail(msg=msg)
62 62
63 def unset_up_test_user(u): 63 def unset_up_test_user(u):
64 # ensure no test1 process in running 64 # ensure no test1 process in running