2024-01-29 12:32:15 +03:00
|
|
|
"""Helper functions for gdbstub testing
|
|
|
|
|
|
|
|
"""
|
|
|
|
from __future__ import print_function
|
tests/guest-debug: Support passing arguments to the GDB test script
This commit adds support for passing arguments to the GDB test scripts
so it's possible to parse the args in an "argparse way" in the test
scripts launched by the runner. The arguments should be preceded by --
when passed to the runner. For example, passing "--help" arg to the
GDB_TEST_SCRIPT:
run-test.py [...] --test <GDB_TEST_SCRIPT> -- --help
The test script should not use the argparse module directly but import
arg_parser from test_gdbstub module. arg_parser then can be used just
like the argparse.ArgumentParser class:
from test_gdbstub import arg_parser
p = arg_parser(prog="test-mytest.py", description="My test.")
p.add_argument("--vowel", help="Select vowel",
required=True, choices=['a','e','i','o','u'])
[...]
The arg_parser allows a smooth and informative exit if, for instance,
the caller of the runner script passes an invalid argument or misses a
required argument by the test script.
Signed-off-by: Gustavo Romero <gustavo.romero@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20240906143316.657436-4-gustavo.romero@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20240910173900.4154726-9-alex.bennee@linaro.org>
2024-09-10 20:38:58 +03:00
|
|
|
import argparse
|
2024-01-29 12:32:15 +03:00
|
|
|
import gdb
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import traceback
|
|
|
|
|
|
|
|
fail_count = 0
|
|
|
|
|
tests/guest-debug: Support passing arguments to the GDB test script
This commit adds support for passing arguments to the GDB test scripts
so it's possible to parse the args in an "argparse way" in the test
scripts launched by the runner. The arguments should be preceded by --
when passed to the runner. For example, passing "--help" arg to the
GDB_TEST_SCRIPT:
run-test.py [...] --test <GDB_TEST_SCRIPT> -- --help
The test script should not use the argparse module directly but import
arg_parser from test_gdbstub module. arg_parser then can be used just
like the argparse.ArgumentParser class:
from test_gdbstub import arg_parser
p = arg_parser(prog="test-mytest.py", description="My test.")
p.add_argument("--vowel", help="Select vowel",
required=True, choices=['a','e','i','o','u'])
[...]
The arg_parser allows a smooth and informative exit if, for instance,
the caller of the runner script passes an invalid argument or misses a
required argument by the test script.
Signed-off-by: Gustavo Romero <gustavo.romero@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20240906143316.657436-4-gustavo.romero@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20240910173900.4154726-9-alex.bennee@linaro.org>
2024-09-10 20:38:58 +03:00
|
|
|
class arg_parser(argparse.ArgumentParser):
|
|
|
|
def exit(self, status=None, message=""):
|
|
|
|
print("Wrong GDB script test argument! " + message)
|
|
|
|
gdb.execute("exit 1")
|
2024-01-29 12:32:15 +03:00
|
|
|
|
|
|
|
def report(cond, msg):
|
|
|
|
"""Report success/fail of a test"""
|
|
|
|
if cond:
|
|
|
|
print("PASS: {}".format(msg))
|
|
|
|
else:
|
|
|
|
print("FAIL: {}".format(msg))
|
|
|
|
global fail_count
|
|
|
|
fail_count += 1
|
|
|
|
|
|
|
|
|
|
|
|
def main(test, expected_arch=None):
|
|
|
|
"""Run a test function
|
|
|
|
|
|
|
|
This runs as the script it sourced (via -x, via run-test.py)."""
|
|
|
|
try:
|
|
|
|
inferior = gdb.selected_inferior()
|
|
|
|
arch = inferior.architecture()
|
|
|
|
print("ATTACHED: {}".format(arch.name()))
|
|
|
|
if expected_arch is not None:
|
|
|
|
report(arch.name() == expected_arch,
|
|
|
|
"connected to {}".format(expected_arch))
|
|
|
|
except (gdb.error, AttributeError):
|
|
|
|
print("SKIP: not connected")
|
|
|
|
exit(0)
|
|
|
|
|
|
|
|
if gdb.parse_and_eval("$pc") == 0:
|
|
|
|
print("SKIP: PC not set")
|
|
|
|
exit(0)
|
|
|
|
|
|
|
|
try:
|
|
|
|
test()
|
|
|
|
except:
|
|
|
|
print("GDB Exception:")
|
|
|
|
traceback.print_exc(file=sys.stdout)
|
|
|
|
global fail_count
|
|
|
|
fail_count += 1
|
|
|
|
if "QEMU_TEST_INTERACTIVE" in os.environ:
|
|
|
|
import code
|
|
|
|
code.InteractiveConsole(locals=globals()).interact()
|
|
|
|
raise
|
|
|
|
|
|
|
|
try:
|
|
|
|
gdb.execute("kill")
|
|
|
|
except gdb.error:
|
|
|
|
pass
|
|
|
|
|
|
|
|
print("All tests complete: {} failures".format(fail_count))
|
2024-05-15 20:31:31 +03:00
|
|
|
gdb.execute(f"exit {fail_count}")
|