Skip to content

Commit

Permalink
Fixes for CI and presets (#3853)
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF authored Nov 15, 2023
1 parent c779464 commit fe49c07
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux-auto-aocc-ompi.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: linux autotools aocc ompi
name: hdf5 dev autotools aocc ompi

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/netcdf.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: netCDF
name: netCDF dev

on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion config/cmake-presets/hidden-presets.json
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@
"generators": [
"ZIP"
],
"configurations": ["Release"]
"configurations": ["RelWithDebInfo"]
},
{
"name": "ci-x64-Release-Clang",
Expand Down
18 changes: 10 additions & 8 deletions config/cmake/grepTest.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ message (STATUS "COMMAND Error: ${TEST_ERROR}")

# remove special output
file (READ ${TEST_FOLDER}/${TEST_OUTPUT} TEST_STREAM)
string (FIND TEST_STREAM "_pmi_alps" "${TEST_FIND_RESULT}")
if (TEST_FIND_RESULT GREATER 0)
string (FIND TEST_STREAM "_pmi_alps" TEST_FIND_RESULT)
if (TEST_FIND_RESULT GREATER -1)
string (REGEX REPLACE "^.*_pmi_alps[^\n]+\n" "" TEST_STREAM "${TEST_STREAM}")
file (WRITE ${TEST_FOLDER}/${TEST_OUTPUT} ${TEST_STREAM})
endif ()
Expand Down Expand Up @@ -169,12 +169,14 @@ else ()
# else grep the output with the reference
set (TEST_GREP_RESULT 0)
file (READ ${TEST_FOLDER}/${TEST_OUTPUT} TEST_STREAM)

# TEST_REFERENCE should always be matched
string (REGEX MATCH "${TEST_REFERENCE}" TEST_MATCH ${TEST_STREAM})
string (COMPARE EQUAL "${TEST_REFERENCE}" "${TEST_MATCH}" TEST_GREP_RESULT)
if (NOT TEST_GREP_RESULT)
message (FATAL_ERROR "Failed: The output of ${TEST_PROGRAM} did not contain ${TEST_REFERENCE}")
list (LENGTH TEST_STREAM test_len)
if (test_len GREATER 0)
# TEST_REFERENCE should always be matched
string (REGEX MATCH "${TEST_REFERENCE}" TEST_MATCH ${TEST_STREAM})
string (COMPARE EQUAL "${TEST_REFERENCE}" "${TEST_MATCH}" TEST_GREP_RESULT)
if (NOT TEST_GREP_RESULT)
message (FATAL_ERROR "Failed: The output of ${TEST_PROGRAM} did not contain ${TEST_REFERENCE}")
endif ()
endif ()
endif ()

Expand Down

0 comments on commit fe49c07

Please sign in to comment.