diff options
| author | Chen Qi <Qi.Chen@windriver.com> | 2018-10-12 10:24:50 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-12 16:57:21 +0100 |
| commit | 8d29bd8ad0fc3379930623272c2212a623c2160f (patch) | |
| tree | 5e54cff42d936ed2f2864770872cc4b36a4dc7af /meta/lib/oeqa/runtime | |
| parent | ba33809b8cbb9c089b87bd772d6572d2370507b5 (diff) | |
| download | poky-8d29bd8ad0fc3379930623272c2212a623c2160f.tar.gz | |
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
(From OE-Core rev: 30f2cdd0a3ee0874bebd135e35ab591f630e8adc)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime')
| -rw-r--r-- | meta/lib/oeqa/runtime/cases/ksample.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/cases/ksample.py b/meta/lib/oeqa/runtime/cases/ksample.py index eb8713351a..354cc97673 100644 --- a/meta/lib/oeqa/runtime/cases/ksample.py +++ b/meta/lib/oeqa/runtime/cases/ksample.py | |||
| @@ -34,7 +34,7 @@ class KSample(OERuntimeTestCase): | |||
| 34 | cmd = "ls " + "/lib/modules/" + output + "/kernel/samples/" + path + module_name | 34 | cmd = "ls " + "/lib/modules/" + output + "/kernel/samples/" + path + module_name |
| 35 | status, output = self.target.run(cmd) | 35 | status, output = self.target.run(cmd) |
| 36 | if status != 0: | 36 | if status != 0: |
| 37 | error_info = module_name + "doesn't exist" | 37 | error_info = module_name + " doesn't exist" |
| 38 | self.skipTest(error_info) | 38 | self.skipTest(error_info) |
| 39 | 39 | ||
| 40 | def kfifo_func(self, name=''): | 40 | def kfifo_func(self, name=''): |
