master
py 31 lines 835 Bytes
Raw
1 #!/usr/bin/env python3
2 #
3 # SPDX-License-Identifier: GPL-2.0-or-later
4 #
5 # Reverse debugging test for x86_64
6 #
7 # Copyright (c) 2020 ISP RAS
8 # Copyright (c) 2025 Linaro Limited
9 #
10 # Author:
11 # Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru>
12 # Gustavo Romero <gustavo.romero@linaro.org> (Run without Avocado)
13 #
14 # This work is licensed under the terms of the GNU GPL, version 2 or
15 # later. See the COPYING file in the top-level directory.
16
17 from qemu_test import skipFlakyTest
18 from reverse_debugging import ReverseDebugging
19
20
21 class ReverseDebuggingX86(ReverseDebugging):
22
23 @skipFlakyTest("https://gitlab.com/qemu-project/qemu/-/issues/2922")
24 def test_x86_64_pc(self):
25 self.set_machine('pc')
26 # start with BIOS only
27 self.reverse_debugging(gdb_arch='x86-64')
28
29
30 if __name__ == '__main__':
31 ReverseDebugging.main()