Skip to content
Snippets Groups Projects
Commit 67376c9c authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'test.AthContainersRoot-20240214' into 'main'

AthContainersRoot: Fix deletion order in unit test.

See merge request !68883
parents eccb6f72 0f89a416
No related branches found
No related tags found
1 merge request!68883AthContainersRoot: Fix deletion order in unit test.
/*
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
*/
/**
* @file AthContainersRoot/test/RootAuxVectorFactory_test.cxx
......@@ -489,9 +489,21 @@ void test6()
std::unique_ptr<SGTest::TestStore> store = SGTest::getTestStore();
// Need to create the factories before the store: the store dtor will use the factories
// to delete the contained vectors.
TClass* cl1 = TClass::GetClass ("std::vector<ElementLink<std::vector<AthContainersRootTest::Foo*> > >");
SG::RootAuxVectorFactory fac1 (cl1);
TClass* cl2 = TClass::GetClass ("std::vector<std::vector<ElementLink<std::vector<AthContainersRootTest::Foo*> > > >");
SG::RootAuxVectorFactory fac2 (cl2);
TClass* cl3 = TClass::GetClass ("std::vector<ElementLink<std::vector<AthContainersRootTest::Foo> > >");
SG::RootAuxVectorFactory fac3 (cl3);
TClass* cl4 = TClass::GetClass ("std::vector<std::vector<ElementLink<std::vector<AthContainersRootTest::Foo> > > >");
SG::RootAuxVectorFactory fac4 (cl4);
std::unique_ptr<SG::IAuxTypeVector> vec1 = fac1.create (1, 10, 10);
EL* elv = reinterpret_cast<EL*> (vec1->toPtr());
elv[1] = EL (123, 10);
......@@ -508,9 +520,6 @@ void test6()
assert (elv[3].key() == 124);
assert (elv[3].index() == 11);
TClass* cl2 = TClass::GetClass ("std::vector<std::vector<ElementLink<std::vector<AthContainersRootTest::Foo*> > > >");
SG::RootAuxVectorFactory fac2 (cl2);
std::unique_ptr<SG::IAuxTypeVector> vec2 = fac2.create (2, 10, 10);
std::vector<EL>* velv = reinterpret_cast<std::vector<EL>*> (vec2->toPtr());
store1.addVector (std::move(vec2), false);
......@@ -550,9 +559,6 @@ void test6()
assert (velv[6][1].key() == 457);
assert (velv[6][1].index() == 28);
TClass* cl3 = TClass::GetClass ("std::vector<ElementLink<std::vector<AthContainersRootTest::Foo> > >");
SG::RootAuxVectorFactory fac3 (cl3);
typedef ElementLink<std::vector<AthContainersRootTest::Foo> > EL2;
std::unique_ptr<SG::IAuxTypeVector> vec3 = fac3.create (3, 10, 10);
EL2* elv2 = reinterpret_cast<EL2*> (vec3->toPtr());
......@@ -562,9 +568,6 @@ void test6()
fac3.copyForOutput (3, avd1, 2, avd1, 1, 2);
TClass* cl4 = TClass::GetClass ("std::vector<std::vector<ElementLink<std::vector<AthContainersRootTest::Foo> > > >");
SG::RootAuxVectorFactory fac4 (cl4);
std::unique_ptr<SG::IAuxTypeVector> vec4 = fac4.create (4, 10, 10);
std::vector<EL2>* velv2 = reinterpret_cast<std::vector<EL2>*> (vec4->toPtr());
store1.addVector (std::move(vec4), false);
......
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