Skip to content

Commit

Permalink
tests: Remove fickle fork-32 test
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonKagstrom committed Jul 14, 2024
1 parent a7ab297 commit 29ae165
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
6 changes: 0 additions & 6 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -177,12 +177,6 @@ if (NOT(CMAKE_SYSTEM_NAME STREQUAL "Darwin"))
"${CMAKE_CURRENT_SOURCE_DIR}/assembly/illegal-insn.S"
-o "${CMAKE_CURRENT_BINARY_DIR}/illegal-insn"
)

add_custom_target (fork-32 ALL
COMMAND "${CMAKE_C_COMPILER}" -g -m32
"${CMAKE_CURRENT_SOURCE_DIR}/fork/fork.c"
-o "${CMAKE_CURRENT_BINARY_DIR}/fork-32"
)
endif()
endif (NOT(CMAKE_SYSTEM_NAME STREQUAL "Darwin"))

Expand Down
9 changes: 0 additions & 9 deletions tests/tools/test_compiled.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,6 @@ class fork_64(ForkBase):
def runTest(self):
self.doTest("fork")


class fork_32(ForkBase):
@unittest.skipIf(sys.platform.startswith("darwin"), "Not for OSX")
@unittest.skipUnless(platform.machine().startswith("x86_64"), "Only for x86_64")
def runTest(self):
self.skipTest("Fickle test, ignoring")
self.doTest("fork-32")


class vfork(libkcov.TestCase):
@unittest.skipIf(
sys.platform.startswith("darwin"),
Expand Down

0 comments on commit 29ae165

Please sign in to comment.