File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
tests/integration_tests/build Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Firecracker supports debugging the guest kernel via GDB remote serial protocol.
4
4
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.
6
6
7
7
The GDB feature requires Firecracker to be booted with a config file.
8
8
Original file line number Diff line number Diff line change 4
4
5
5
import platform
6
6
7
- import pytest
8
-
9
7
import host_tools .cargo_build as host
10
8
11
9
MACHINE = platform .machine ()
12
10
TARGET = "{}-unknown-linux-musl" .format (MACHINE )
13
11
14
12
15
- @pytest .mark .skipif (MACHINE != "x86_64" , reason = "GDB runs only on x86_64." )
16
13
def test_gdb_compiles ():
17
14
"""Checks that Firecracker compiles with GDB enabled"""
18
15
You can’t perform that action at this time.
0 commit comments