a8fea70f65
We can do this all in the run-test.py script so remove the extraneous bits from the individual tests which got copied from the original non-CI gdb tests. Acked-by: Ilya Leoshkevich <iii@linux.ibm.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20230829161528.2707696-8-alex.bennee@linaro.org>
57 lines
1.2 KiB
Python
57 lines
1.2 KiB
Python
from __future__ import print_function
|
|
#
|
|
# Test auxiliary vector is loaded via gdbstub
|
|
#
|
|
# This is launched via tests/guest-debug/run-test.py
|
|
#
|
|
|
|
import gdb
|
|
import sys
|
|
|
|
failcount = 0
|
|
|
|
def report(cond, msg):
|
|
"Report success/fail of test"
|
|
if cond:
|
|
print ("PASS: %s" % (msg))
|
|
else:
|
|
print ("FAIL: %s" % (msg))
|
|
global failcount
|
|
failcount += 1
|
|
|
|
def run_test():
|
|
"Run through the tests one by one"
|
|
|
|
sym, ok = gdb.lookup_symbol("thread1_func")
|
|
gdb.execute("b thread1_func")
|
|
gdb.execute("c")
|
|
|
|
frame = gdb.selected_frame()
|
|
report(str(frame.function()) == "thread1_func", "break @ %s"%frame)
|
|
|
|
#
|
|
# This runs as the script it sourced (via -x, via run-test.py)
|
|
#
|
|
try:
|
|
inferior = gdb.selected_inferior()
|
|
arch = inferior.architecture()
|
|
print("ATTACHED: %s" % arch.name())
|
|
except (gdb.error, AttributeError):
|
|
print("SKIPPING (not connected)", file=sys.stderr)
|
|
exit(0)
|
|
|
|
if gdb.parse_and_eval('$pc') == 0:
|
|
print("SKIP: PC not set")
|
|
exit(0)
|
|
|
|
try:
|
|
# Run the actual tests
|
|
run_test()
|
|
except (gdb.error):
|
|
print ("GDB Exception: %s" % (sys.exc_info()[0]))
|
|
failcount += 1
|
|
pass
|
|
|
|
print("All tests complete: %d failures" % failcount)
|
|
exit(failcount)
|