@@ -399,24 +399,24 @@ llvm::Error verifyResult(offloadtest::Result R) {
399399 }
400400 }
401401
402- OS << " Expected:\n " ;
403- llvm::yaml::Output YAMLOS (OS);
404- YAMLOS << *R.ExpectedPtr ;
405- OS << " Got:\n " ;
406- YAMLOS << *R.ActualPtr ;
402+ // OS << "Expected:\n";
403+ // llvm::yaml::Output YAMLOS(OS);
404+ // YAMLOS << *R.ExpectedPtr;
405+ // OS << "Got:\n";
406+ // YAMLOS << *R.ActualPtr;
407407
408408 // Now print exact hex64 representations of each element of the
409409 // actual and expected buffers.
410410
411- const std::string ExpectedBufferStr =
412- getBufferStr (R.ExpectedPtr , R.ComparisonRule );
413- const std::string ActualBufferStr =
414- getBufferStr (R.ActualPtr , R.ComparisonRule );
411+ // const std::string ExpectedBufferStr =
412+ // getBufferStr(R.ExpectedPtr, R.ComparisonRule);
413+ // const std::string ActualBufferStr =
414+ // getBufferStr(R.ActualPtr, R.ComparisonRule);
415415
416- OS << " Full Hex 64bit representation of Expected Buffer Values:\n "
417- << ExpectedBufferStr << " \n " ;
418- OS << " Full Hex 64bit representation of Actual Buffer Values:\n "
419- << ActualBufferStr << " \n " ;
416+ // OS << "Full Hex 64bit representation of Expected Buffer Values:\n"
417+ // << ExpectedBufferStr << "\n";
418+ // OS << "Full Hex 64bit representation of Actual Buffer Values:\n"
419+ // << ActualBufferStr << "\n";
420420
421421 return llvm::createStringError (Str.c_str ());
422422}
0 commit comments