Skip to content

Commit

Permalink
Revert "tests/avocado: Enable reverse_debugging.py tests in gitlab CI"
Browse files Browse the repository at this point in the history
This reverts commit c4d74ab.

The reverse debugging test is sometimes still failing. See:
 https://gitlab.com/qemu-project/qemu/-/issues/1992

Signed-off-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-ID: <20231121100842.677363-1-thuth@redhat.com>
  • Loading branch information
huth authored and stefanhaRH committed Nov 21, 2023
1 parent 63ceac2 commit ea6a33e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/avocado/reverse_debugging.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,8 @@ def get_pc(self, g):
return self.get_reg_le(g, self.REG_PC) \
+ self.get_reg_le(g, self.REG_CS) * 0x10

# unidentified gitlab timeout problem
@skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab')
def test_x86_64_pc(self):
"""
:avocado: tags=arch:x86_64
Expand All @@ -220,6 +222,8 @@ class ReverseDebugging_AArch64(ReverseDebugging):

REG_PC = 32

# unidentified gitlab timeout problem
@skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab')
def test_aarch64_virt(self):
"""
:avocado: tags=arch:aarch64
Expand All @@ -242,6 +246,8 @@ class ReverseDebugging_ppc64(ReverseDebugging):

REG_PC = 0x40

# unidentified gitlab timeout problem
@skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab')
def test_ppc64_pseries(self):
"""
:avocado: tags=arch:ppc64
Expand All @@ -253,6 +259,8 @@ def test_ppc64_pseries(self):
self.endian_is_le = False
self.reverse_debugging()

# See https://gitlab.com/qemu-project/qemu/-/issues/1992
@skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab')
def test_ppc64_powernv(self):
"""
:avocado: tags=arch:ppc64
Expand Down

0 comments on commit ea6a33e

Please sign in to comment.