Skip to content

Commit

Permalink
Enable printout to debug unit test failure on ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
makortel authored Jul 27, 2021
1 parent 23f1aad commit ec017b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FWCore/Utilities/test/reusableobjectholder_t.cppunit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,9 @@ void reusableobjectholder_test::testSimultaneousUse() {
t1.join();
t2.join();

std::cout <<" # seen: "<<t1ItemsSeen.size() <<" "<<t2ItemsSeen.size()<<std::endl;
CPPUNIT_ASSERT(t1ItemsSeen.size() > 0 && t1ItemsSeen.size() < 3);
CPPUNIT_ASSERT(t2ItemsSeen.size() > 0 && t2ItemsSeen.size() < 3);
//std::cout <<" # seen: "<<t1ItemsSeen.size() <<" "<<t2ItemsSeen.size()<<std::endl;
#endif
}

Expand Down

0 comments on commit ec017b8

Please sign in to comment.