Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix01 #46

Merged
merged 2 commits into from Jan 12, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/LCIOConfig.cmake.in
Expand Up @@ -54,7 +54,7 @@ CHECK_PACKAGE_LIBS( LCIO lcio sio )

# ---------- libraries dependencies -------------------------------------------
# this sets LCIO_${COMPONENT}_LIB_DEPENDS variables
INCLUDE( "${LCIO_ROOT}/lib/cmake/LCIOLibDeps.cmake" )
#INCLUDE( "${LCIO_ROOT}/lib/cmake/LCIOLibDeps.cmake" )



Expand Down
3 changes: 2 additions & 1 deletion src/cpp/src/TESTS/test_randomaccess.cc
Expand Up @@ -112,7 +112,8 @@ int main(int /*argc*/, char** /*argv*/ ){


MYTEST.LOG( " ------------------------------------- test random access in file c_sim.slcio - file must exist in : " ) ;
std::system("pwd") ;
if( !std::system("pwd") )
std::cout << "?" << std::endl ;

// simjob.slcio has written 100 events in 10 runs, closing and re-opening the file after every run
// this tests writing the random access records in append mode ...
Expand Down