Skip to content

Commit

Permalink
tests: Skip some ARM/AARCH64-unstable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonKagstrom committed Jul 17, 2024
1 parent bcbd809 commit 3601188
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/tools/test_bash.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ def runTest(self):

# Issue #224
class bash_can_find_non_executed_scripts(libkcov.TestCase):
@unittest.skipUnless(platform.machine() in ["x86_64", "i686", "i386"], "Only for x86")
def runTest(self):
rv, o = self.do(
self.kcov
Expand All @@ -436,6 +437,7 @@ def runTest(self):


class bash_can_find_non_executed_scripts_manually(libkcov.TestCase):
@unittest.skipUnless(platform.machine() in ["x86_64", "i686", "i386"], "Only for x86")
def runTest(self):
rv, o = self.do(
self.kcov
Expand Down Expand Up @@ -492,6 +494,7 @@ def runTest(self):


class bash_drain_stdout_without_return(libkcov.TestCase):
@unittest.skipUnless(platform.machine() in ["x86_64", "i686", "i386"], "Only for x86")
@unittest.skipIf(sys.platform.startswith("darwin"), "Not for OSX")
def runTest(self):
rv, o = self.do(
Expand Down

0 comments on commit 3601188

Please sign in to comment.