Skip to content

Commit a27a23c

Browse files
committed
Update docs and tests for ARM gdb support
Updated docs to now show arm is supported. Updated the build test to run on aarch Signed-off-by: Jack Thomson <jackabt@amazon.com>
1 parent 20c1e14 commit a27a23c

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

docs/gdb-debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Firecracker supports debugging the guest kernel via GDB remote serial protocol.
44
This 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

77
The GDB feature requires Firecracker to be booted with a config file.
88

tests/integration_tests/build/test_gdb.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,12 @@
44

55
import platform
66

7-
import pytest
8-
97
import host_tools.cargo_build as host
108

119
MACHINE = platform.machine()
1210
TARGET = "{}-unknown-linux-musl".format(MACHINE)
1311

1412

15-
@pytest.mark.skipif(MACHINE != "x86_64", reason="GDB runs only on x86_64.")
1613
def test_gdb_compiles():
1714
"""Checks that Firecracker compiles with GDB enabled"""
1815

0 commit comments

Comments
 (0)