Skip to content

Commit c4eb0c1

Browse files
committed
Fixup
1 parent 0be896d commit c4eb0c1

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

cmake/DetectOptions.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ elseif(ADIOS2_USE_XRootD)
583583
endif()
584584
if(XRootD_FOUND)
585585
set(ADIOS2_HAVE_XRootD TRUE)
586-
FIND_PROGRAM( XROOTD_SERVER_BINARY xrootd
586+
find_program( XROOTD_SERVER_BINARY xrootd
587587
HINTS
588588
${XROOTD_DIR}
589589
$ENV{XROOTD_DIR}

source/adios2/toolkit/remote/XrootdRemote.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,9 @@ void myRequest::Alert(XrdSsiRespInfoMsg &aMsg)
134134

135135
// Print what we received
136136
//
137-
fprintf(XrdSsiCl::outFile, "%s@%s: Rcvd %d bytes alert: '%s'\n", rName, GetEndPoint().c_str(),
138-
theMsz, theMsg);
137+
// fprintf(XrdSsiCl::outFile, "%s@%s: Rcvd %d bytes alert: '%s'\n", rName,
138+
// GetEndPoint().c_str(),
139+
// theMsz, theMsg);
139140

140141
// Recycle the message
141142
//

testing/adios2/engine/bp/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,9 @@ if (ADIOS2_HAVE_XRootD)
157157
endmacro()
158158

159159
add_test(NAME generateXRootDConfig COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/generateXRootDConfig.sh $<TARGET_FILE:adios2_xrootd> )
160-
add_test(NAME remoteXRServerSetup COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/start_xrootd.sh ${XROOTD_SERVER_BINARY} ${CMAKE_CURRENT_BINARY_DIR})
160+
add_test(NAME remoteXRServerSetup COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/start_xrootd.sh ${XROOTD_SERVER_BINARY} ${CMAKE_CURRENT_BINARY_DIR})
161161

162-
set_tests_properties(remoteXRServerSetup PROPERTIES FIXTURES_SETUP XRServer)
162+
set_tests_properties(remoteXRServerSetup PROPERTIES FIXTURES_SETUP XRServer)
163163
set_tests_properties(remoteXRServerSetup PROPERTIES DEPENDS "generateXRootDConfig")
164164

165165
add_test(NAME remoteXRServerCleanup COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/kill_xrootd.sh )

0 commit comments

Comments
 (0)