Skip to content
Merged
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
7 changes: 7 additions & 0 deletions core/testsupport/src/TestSupport.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,13 @@ static struct ForbidDiagnostics {
return;
}

// FIXME: RooNaNPacker warns about not being implemented for big endian
if (level == kWarning
&& strcmp(msg, "Fast recovery from undefined function values only implemented for little-endian machines. If necessary, request an extension of functionality on https://root.cern") == 0) {
std::cerr << "Warning in " << location << " " << msg << std::endl;
return;
}

FAIL() << "Received unexpected diagnostic of severity "
<< level
<< " at '" << location << "' reading '" << msg << "'.\n"
Expand Down