[oe-commits] [openembedded-core] 15/19: ksample.py: fix error message

git at git.openembedded.org git at git.openembedded.org
Fri Oct 12 07:47:05 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 30f2cdd0a3ee0874bebd135e35ab591f630e8adc
Author: Chen Qi <Qi.Chen at windriver.com>
AuthorDate: Fri Oct 12 10:24:50 2018 +0800

    ksample.py: fix error message
    
    The current error message is like:
    
      kobject-example.kodoesn't exist
    
    Add a space so that it looks like:
    
      kobject-example.ko doesn't exist
    
    Signed-off-by: Chen Qi <Qi.Chen at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/runtime/cases/ksample.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/runtime/cases/ksample.py b/meta/lib/oeqa/runtime/cases/ksample.py
index eb87133..354cc97 100644
--- a/meta/lib/oeqa/runtime/cases/ksample.py
+++ b/meta/lib/oeqa/runtime/cases/ksample.py
@@ -34,7 +34,7 @@ class KSample(OERuntimeTestCase):
         cmd = "ls " + "/lib/modules/" + output + "/kernel/samples/" + path + module_name
         status, output = self.target.run(cmd)
         if status != 0:
-            error_info = module_name + "doesn't exist"
+            error_info = module_name + " doesn't exist"
             self.skipTest(error_info)
 
     def kfifo_func(self, name=''):

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list