Skip to content
Snippets Groups Projects
Commit 1001dd9d authored by Scott Snyder's avatar Scott Snyder Committed by Graeme Stewart
Browse files

Add leak checking to unit tests. (TrigTruthEventTPCnv-00-01-12)

	* Tagging TrigTruthEventTPCnv-00-01-12.
	* Add leak checking to unit tests.

2016-10-26  scott snyder  <snyder@bnl.gov>

	* Tagging TrigTruthEventTPCnv-00-01-11.
	* endreq -> endmsg.
parent 2002e583
No related branches found
No related tags found
No related merge requests found
......@@ -2,3 +2,4 @@ test1
Athena::getMessageSvc: WARNING MessageSvc not found, will use std::cout
Athena::getMessageSvc: WARNING MessageSvc not found, will use std::cout
Athena::getMessageSvc: WARNING MessageSvc not found, will use std::cout
Athena::getMessageSvc: WARNING MessageSvc not found, will use std::cout
......@@ -11,7 +11,7 @@ void TrigIDHitStatsCnv_p1::persToTrans(const TrigIDHitStats_p1* persObj,
TrigIDHitStats* transObj,
MsgStream &log)
{
log << MSG::DEBUG << "TrigIDHitStatsCnv_p1::persToTrans called " << endreq;
log << MSG::DEBUG << "TrigIDHitStatsCnv_p1::persToTrans called " << endmsg;
for(unsigned i=0; i<3; i++) {
(*transObj)[static_cast<TrigIDHitStats::IDSubDetType>(i)] = persObj->numHits[i];
......@@ -24,7 +24,7 @@ void TrigIDHitStatsCnv_p1::transToPers(const TrigIDHitStats* transObj,
TrigIDHitStats_p1* persObj,
MsgStream &log)
{
log << MSG::DEBUG << "TrigIDHitStatsCnv_p1::transToPers called " << endreq;
log << MSG::DEBUG << "TrigIDHitStatsCnv_p1::transToPers called " << endmsg;
for(unsigned i=0; i<3; i++) {
persObj->numHits[i] = (*transObj)[static_cast<TrigIDHitStats::IDSubDetType>(i)];
......
......@@ -11,7 +11,7 @@ void TrigInDetTrackTruthCnv_p1::persToTrans(const TrigInDetTrackTruth_p1* persOb
TrigInDetTrackTruth* transObj,
MsgStream &log)
{
log << MSG::DEBUG << "TrigInDetTrackTruthCnv_p1::persToTrans called " << endreq;
log << MSG::DEBUG << "TrigInDetTrackTruthCnv_p1::persToTrans called " << endmsg;
transObj->m_best_match_hits = persObj->best_match_hits ;
transObj->m_best_Si_match_hits = persObj->best_Si_match_hits ;
......@@ -52,7 +52,7 @@ void TrigInDetTrackTruthCnv_p1::transToPers(const TrigInDetTrackTruth* transObj,
TrigInDetTrackTruth_p1* persObj,
MsgStream &log)
{
log << MSG::DEBUG << "TrigInDetTrackTruthCnv_p1::transToPers called " << endreq;
log << MSG::DEBUG << "TrigInDetTrackTruthCnv_p1::transToPers called " << endmsg;
persObj->best_match_hits = transObj->m_best_match_hits ;
......
......@@ -19,7 +19,7 @@ void TrigInDetTrackTruthMapCnv_p1::persToTrans( const TrigInDetTrackTruthMap_p1
TrigInDetTrackTruthMap *transObj,
MsgStream &log )
{
log << MSG::DEBUG << "TrigInDetTrackTruthMapCnv_p1::persToTrans called " << endreq;
log << MSG::DEBUG << "TrigInDetTrackTruthMapCnv_p1::persToTrans called " << endmsg;
transObj->m_elink_vec.clear();
trackVectCnv.persToTrans(&persObj->m_elink_vec, &transObj->m_elink_vec, log);
......@@ -44,7 +44,7 @@ void TrigInDetTrackTruthMapCnv_p1::transToPers( const TrigInDetTrackTruthMap
TrigInDetTrackTruthMap_p1 *persObj,
MsgStream &log )
{
log << MSG::DEBUG << "TrigInDetTrackTruthMapCnv_p1::transToPers called " << endreq;
log << MSG::DEBUG << "TrigInDetTrackTruthMapCnv_p1::transToPers called " << endmsg;
trackVectCnv.transToPers(&transObj->m_elink_vec, &persObj->m_elink_vec, log);
......
......@@ -14,6 +14,7 @@
#undef NDEBUG
#include "TrigTruthEventTPCnv/TrigIDHitStatsCnv_p1.h"
#include "GaudiKernel/MsgStream.h"
#include "TestTools/leakcheck.h"
#include <cassert>
#include <iostream>
......@@ -43,6 +44,7 @@ void testit (const TrigIDHitStats& trans1)
void test1()
{
std::cout << "test1\n";
Athena_test::Leakcheck check;
TrigIDHitStats trans1;
trans1[TrigIDHitStats::PIX] = 12;
......
......@@ -15,6 +15,7 @@
#include "TrigTruthEventTPCnv/TrigInDetTrackTruthCnv_p1.h"
#include "TrigTruthEventTPCnv/TrigInDetTrackTruthMapCnv_tlp2.h"
#include "GaudiKernel/MsgStream.h"
#include "TestTools/leakcheck.h"
#include <cassert>
#include <iostream>
......@@ -94,6 +95,7 @@ void testit (const TrigInDetTrackTruth& trans1)
void test1()
{
std::cout << "test1\n";
Athena_test::Leakcheck check;
TrigInDetTrackTruth trans1;
TrigInDetTrackTruthCnv_p1_test::set (trans1);
......
......@@ -17,6 +17,7 @@
#include "SGTools/TestStore.h"
#include "CxxUtils/make_unique.h"
#include "GaudiKernel/MsgStream.h"
#include "TestTools/leakcheck.h"
#include <cassert>
#include <iostream>
......@@ -109,9 +110,6 @@ void test1()
{
std::cout << "test1\n";
TrigInDetTrackTruthMap trans1;
//TrigInDetTrackTruthMapCnv_p1_test::set (trans1);
auto coll = CxxUtils::make_unique<TrigInDetTrackCollection>();
for (int i=0; i<10; i++) {
int o = i*10;
......@@ -124,6 +122,11 @@ void test1()
const TrigInDetTrackCollection* collp = coll.get();
SGTest::store.record (coll.release(), "coll");
Athena::getMessageSvc();
Athena_test::Leakcheck check;
TrigInDetTrackTruthMap trans1;
//TrigInDetTrackTruthMapCnv_p1_test::set (trans1);
TrigInDetTrackTruth t1;
TrigInDetTrackTruthCnv_p1_test::set (t1, 1);
trans1.addMatch (collp, 1, t1);
......@@ -135,7 +138,6 @@ void test1()
TrigInDetTrackTruth t3;
TrigInDetTrackTruthCnv_p1_test::set (t3, 3);
trans1.addMatch (collp, 3, t3);
testit (trans1);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment