diff options
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/package.py')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/package.py b/meta/lib/oeqa/selftest/cases/package.py index 7a00753821..291627877e 100644 --- a/meta/lib/oeqa/selftest/cases/package.py +++ b/meta/lib/oeqa/selftest/cases/package.py | |||
@@ -7,6 +7,7 @@ from oeqa.utils.commands import bitbake, get_bb_vars, get_bb_var, runqemu | |||
7 | import stat | 7 | import stat |
8 | import subprocess, os | 8 | import subprocess, os |
9 | import oe.path | 9 | import oe.path |
10 | import re | ||
10 | 11 | ||
11 | class VersionOrdering(OESelftestTestCase): | 12 | class VersionOrdering(OESelftestTestCase): |
12 | # version1, version2, sort order | 13 | # version1, version2, sort order |
@@ -134,7 +135,7 @@ class PackageTests(OESelftestTestCase): | |||
134 | return False | 135 | return False |
135 | 136 | ||
136 | # Check debugging symbols works correctly | 137 | # Check debugging symbols works correctly |
137 | elif "Breakpoint 1, main () at hello.c:4" in l: | 138 | elif re.match("Breakpoint 1.*hello\.c.*4", l): |
138 | return True | 139 | return True |
139 | 140 | ||
140 | self.logger.error("GDB result:\n%d: %s", status, output) | 141 | self.logger.error("GDB result:\n%d: %s", status, output) |