diff options
-rw-r--r-- | meta/lib/oeqa/core/context.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/core/context.py b/meta/lib/oeqa/core/context.py index 58244895af..7882697e28 100644 --- a/meta/lib/oeqa/core/context.py +++ b/meta/lib/oeqa/core/context.py | |||
@@ -52,7 +52,7 @@ class OETestContext(object): | |||
52 | return func | 52 | return func |
53 | for test in self.suites: | 53 | for test in self.suites: |
54 | for skip in skips: | 54 | for skip in skips: |
55 | if test.id().startswith(skip): | 55 | if (test.id()+'.').startswith(skip+'.'): |
56 | setattr(test, 'setUp', skipfuncgen('Skip by the command line argument "%s"' % skip)) | 56 | setattr(test, 'setUp', skipfuncgen('Skip by the command line argument "%s"' % skip)) |
57 | 57 | ||
58 | def loadTests(self, module_paths, modules=[], tests=[], | 58 | def loadTests(self, module_paths, modules=[], tests=[], |