Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hist/histpainter/src/THistPainter.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -2328,8 +2328,8 @@ Begin_Macro(source)
Double_t lat2 = 50;
TH2Poly *p = new TH2Poly("USA","USA Population",lon1,lon2,lat1,lat2);

TFile *f;
f = TFile::Open("http://root.cern.ch/files/usa.root");
TFile::SetCacheFileDir(".");
TFile *f = TFile::Open("http://root.cern.ch/files/usa.root", "CACHEREAD");

TMultiGraph *mg;
TKey *key;
Expand Down
2 changes: 1 addition & 1 deletion math/mathmore/test/testSpecFunc.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ int testSpecFunc() {

iret |= compare("hyperg(8, -8, 1, 0.5) ", hyperg(8, -8, 1, 0.5), 0.13671875);

iret |= compare("laguerre(4, 1.) ", laguerre(4, 1.), -0.6250); // need to find more precise value
iret |= compare("laguerre(4, 1.) ", laguerre(4, 1.), -0.6250, 4); // need to find more precise value

iret |= compare("legendre(10, -0.5) ", legendre(10, -0.5), -0.1882286071777345);

Expand Down
5 changes: 3 additions & 2 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -247,13 +247,14 @@ ROOT_EXECUTABLE(stressHepix stressHepix.cxx LIBRARIES Core)

#--stressProof-------------------------------------------------------------------------------
if(NOT WIN32)
add_custom_target(TestData ALL COMMAND ${CMAKE_COMMAND} -DDST=${CMAKE_SOURCE_DIR}/files -P ${CMAKE_CURRENT_SOURCE_DIR}/rootDownloadData.cmake)
add_custom_target(TestData COMMAND ${CMAKE_COMMAND} -DDST=${CMAKE_SOURCE_DIR}/files -P ${CMAKE_CURRENT_SOURCE_DIR}/rootDownloadData.cmake)
ROOT_EXECUTABLE(stressProof stressProof.cxx LIBRARIES Proof ProofPlayer Hist)
ROOT_ADD_TEST(test-stressproof COMMAND stressProof lite://
-h1 ${CMAKE_SOURCE_DIR}/files/h1 -event ${CMAKE_SOURCE_DIR}/files/event
-l /tmp/stressProof-%d.log -cleanlog -catlog -noprogress
ENVIRONMENT PATH=${CMAKE_BINARY_DIR}/bin:$ENV{PATH}
FAILREGEX "FAILED|Error in")
FAILREGEX "FAILED|Error in"
DEPENDS TestData)
endif()

#--testbits----------------------------------------------------------------------------------
Expand Down
Loading