Skip to content

Commit 0dda18e

Browse files
committed
[test] try without track lib dictionary
1 parent 19a816c commit 0dda18e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

math/smatrix/test/CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ set(TestSource
2020
stressKalman.cxx)
2121

2222

23-
ROOT_GENERATE_DICTIONARY(TrackDict Track.h LINKDEF TrackLinkDef.h OPTIONS -inlineInputHeader)
23+
# ROOT_GENERATE_DICTIONARY(TrackDict Track.h LINKDEF TrackLinkDef.h OPTIONS -inlineInputHeader)
2424

2525
#---Build and add all the defined test in the list---------------
2626
foreach(file ${TestSource})
2727
get_filename_component(testname ${file} NAME_WE)
28-
if (testname STREQUAL "testIO")
29-
ROOT_EXECUTABLE(${testname} ${file} TrackDict.cxx LIBRARIES ${Libraries})
30-
else()
31-
ROOT_EXECUTABLE(${testname} ${file} LIBRARIES ${Libraries})
32-
endif()
28+
# if (testname STREQUAL "testIO")
29+
# ROOT_EXECUTABLE(${testname} ${file} TrackDict.cxx LIBRARIES ${Libraries})
30+
# else()
31+
ROOT_EXECUTABLE(${testname} ${file} LIBRARIES ${Libraries})
32+
# endif()
3333
target_include_directories(${testname} PRIVATE ./)
3434
if (CLHEPBASE)
3535
target_include_directories(${testname} PRIVATE ${CLHEPBASE})

math/smatrix/test/testIO.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ int testIO() {
907907
std::cout << "\n*****************************************************\n\n";
908908

909909
// load track dictionary
910-
iret |= gSystem->Load("libTrackDict");
910+
// iret |= gSystem->Load("libTrackDict");
911911
if (iret != 0 ) return iret;
912912

913913
iret |= testTrack(nEvents);

0 commit comments

Comments
 (0)