Skip to content

Commit

Permalink
Disable porttest on z/OS
Browse files Browse the repository at this point in the history
See #4747.

Signed-off-by: Filip Jeremic <fjeremic@ca.ibm.com>
  • Loading branch information
fjeremic committed Jan 23, 2020
1 parent 63eb011 commit c5f3328
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fvtest/porttest/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@ endif()

set_target_properties(omrporttest sltestlib PROPERTIES FOLDER fvtest)

add_test(NAME porttest COMMAND omrporttest --gtest_output=xml:${CMAKE_CURRENT_BINARY_DIR}/omrporttest-results.xml)
if (NOT OMR_HOST_OS STREQUAL "aix" AND NOT OMR_HOST_OS STREQUAL "zos")
add_test(NAME porttest COMMAND omrporttest --gtest_output=xml:${CMAKE_CURRENT_BINARY_DIR}/omrporttest-results.xml)
endif()

if(OMR_OPT_CUDA)
add_test(NAME cuda_porttest COMMAND omrporttest --gtest_output=xml:${CMAKE_CURRENT_BINARY_DIR}/omrporttest-results.xml --gtest_filter="Cuda*" -earlyExit)
Expand Down

0 comments on commit c5f3328

Please sign in to comment.