File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
tests/integration_tests/build Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 22
33Firecracker supports debugging the guest kernel via GDB remote serial protocol.
44This allows us to connect GDB to the firecracker process and step through debug
5- the guest kernel. Currently only debugging on x86 is supported.
5+ the guest kernel.
66
77The GDB feature requires Firecracker to be booted with a config file.
88
@@ -108,3 +108,7 @@ command in the GDB session which will terminate both.
108108
109109- Currently we support a limited subset of cpu registers for get and set
110110 operations, if more are required feel free to contribute.
111+
112+ - Some assumptions around virtual address configuration on arm have been made.
113+ If the current translation implementation doesn't cover a specific setup, feel
114+ free to contribute.
Original file line number Diff line number Diff line change 44
55import platform
66
7- import pytest
8-
97import host_tools .cargo_build as host
108
119MACHINE = platform .machine ()
1210TARGET = "{}-unknown-linux-musl" .format (MACHINE )
1311
1412
15- @pytest .mark .skipif (MACHINE != "x86_64" , reason = "GDB runs only on x86_64." )
1613def test_gdb_compiles ():
1714 """Checks that Firecracker compiles with GDB enabled"""
1815
You can’t perform that action at this time.
0 commit comments