We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00a53de commit acc0529Copy full SHA for acc0529
1 file changed
Modules/Example/test/testFactory.cxx
@@ -50,8 +50,7 @@ BOOST_AUTO_TEST_CASE(Task_Factory_failures)
50
config.className = "o2::quality_control_modules::example::ExampleTask";
51
BOOST_CHECK_EXCEPTION(factory.create(config, manager), AliceO2::Common::FatalException, is_critical);
52
53
- std::string addition = "lib:../../lib:../../../lib:";
54
- gSystem->Setenv("LD_LIBRARY_PATH", (addition + gSystem->Getenv("LD_LIBRARY_PATH")).c_str());
+ gSystem->AddDynamicPath("lib:../../lib:../../../lib:"); // add local paths for the test
55
config.taskName = "task";
56
config.moduleName = "QcCommon";
57
config.className = "WRONGCLASS";
0 commit comments