summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/runtime')
-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 fa86eb0537..a4ba4e6769 100644
--- a/meta/lib/oeqa/runtime/cases/rpm.py
+++ b/meta/lib/oeqa/runtime/cases/rpm.py
@@ -59,8 +59,8 @@ class RpmBasicTest(OERuntimeTestCase):
59 return 59 return
60 time.sleep(1) 60 time.sleep(1)
61 user_pss = [ps for ps in output.split("\n") if u + ' ' in ps] 61 user_pss = [ps for ps in output.split("\n") if u + ' ' in ps]
62 msg = "There're %s 's process(es) still running: %s".format(u, "\n".join(user_pss)) 62 msg = "User %s has processes still running: %s" % (u, "\n".join(user_pss))
63 assertTrue(True, msg=msg) 63 self.fail(msg=msg)
64 64
65 def unset_up_test_user(u): 65 def unset_up_test_user(u):
66 # ensure no test1 process in running 66 # ensure no test1 process in running