diff options
author | Alistair Francis <alistair.francis@wdc.com> | 2019-05-17 16:53:08 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-21 12:56:33 +0100 |
commit | ebedc1511dc0a24f86186bb847b32868bf2ae04a (patch) | |
tree | 5355ccd78d2185704a8e3419626361680d817dd3 /meta/lib | |
parent | 1df11198ee3d4264c8dc12519be284c573fd4c30 (diff) | |
download | poky-ebedc1511dc0a24f86186bb847b32868bf2ae04a.tar.gz |
gdb: Upgrade from 8.2.1 to 8.3
Bump GDB and change the oeqa selftest expression to allow ptests to
pass.
(From OE-Core rev: f31986ed9f82c48834b2f25979c93697228acbf7)
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-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) |