Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 6, 2015, 2:45:20 PM (9 years ago)
Author:
landauf
Message:

statically initialized instances may contain a type. currently not used.

Location:
code/branches/core7/test/core
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core7/test/core/class/IdentifierClassHierarchyTest.cc

    r10405 r10530  
    142142                virtual void SetUp()
    143143                {
    144                     ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances();
     144                    ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances(0);
    145145                    Identifier::initConfigValues_s = false; // TODO: hack!
    146146                    IdentifierManager::getInstance().createClassHierarchy();
     
    150150                {
    151151                    IdentifierManager::getInstance().destroyClassHierarchy();
    152                     ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances();
     152                    ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances(0);
    153153                }
    154154        };
  • code/branches/core7/test/core/class/IdentifierExternalClassHierarchyTest.cc

    r10405 r10530  
    4949                virtual void SetUp()
    5050                {
    51                     ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances();
     51                    ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances(0);
    5252                    Identifier::initConfigValues_s = false; // TODO: hack!
    5353                    IdentifierManager::getInstance().createClassHierarchy();
     
    5757                {
    5858                    IdentifierManager::getInstance().destroyClassHierarchy();
    59                     ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances();
     59                    ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances(0);
    6060                }
    6161        };
  • code/branches/core7/test/core/class/IdentifierNestedClassHierarchyTest.cc

    r10405 r10530  
    109109                virtual void SetUp()
    110110                {
    111                     ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances();
     111                    ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances(0);
    112112                    Identifier::initConfigValues_s = false; // TODO: hack!
    113113                    IdentifierManager::getInstance().createClassHierarchy();
     
    117117                {
    118118                    IdentifierManager::getInstance().destroyClassHierarchy();
    119                     ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances();
     119                    ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances(0);
    120120                }
    121121        };
  • code/branches/core7/test/core/class/IdentifierSimpleClassHierarchyTest.cc

    r10405 r10530  
    5151                virtual void SetUp()
    5252                {
    53                     ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances();
     53                    ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances(0);
    5454                    Identifier::initConfigValues_s = false; // TODO: hack!
    5555                    IdentifierManager::getInstance().createClassHierarchy();
     
    5959                {
    6060                    IdentifierManager::getInstance().destroyClassHierarchy();
    61                     ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances();
     61                    ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances(0);
    6262                }
    6363        };
  • code/branches/core7/test/core/class/SubclassIdentifierTest.cc

    r10405 r10530  
    3131                virtual void SetUp()
    3232                {
    33                     ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances();
     33                    ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances(0);
    3434                    Identifier::initConfigValues_s = false; // TODO: hack!
    3535                    IdentifierManager::getInstance().createClassHierarchy();
     
    4343
    4444                    IdentifierManager::getInstance().destroyClassHierarchy();
    45                     ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances();
     45                    ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances(0);
    4646                }
    4747        };
  • code/branches/core7/test/core/class/SuperTest.cc

    r10405 r10530  
    7272                virtual void SetUp()
    7373                {
    74                     ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances();
     74                    ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances(0);
    7575                    Identifier::initConfigValues_s = false; // TODO: hack!
    7676                    IdentifierManager::getInstance().createClassHierarchy();
     
    8484
    8585                    IdentifierManager::getInstance().destroyClassHierarchy();
    86                     ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances();
     86                    ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances(0);
    8787                }
    8888        };
  • code/branches/core7/test/core/command/CommandTest.cc

    r10405 r10530  
    140140                virtual void SetUp()
    141141                {
    142                     ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances();
     142                    ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances(0);
    143143                    Identifier::initConfigValues_s = false; // TODO: hack!
    144144                    IdentifierManager::getInstance().createClassHierarchy();
     
    148148                {
    149149                    IdentifierManager::getInstance().destroyClassHierarchy();
    150                     ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances();
     150                    ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances(0);
    151151                }
    152152        };
  • code/branches/core7/test/core/object/ClassFactoryTest.cc

    r10481 r10530  
    1616                {
    1717                    Context::setRootContext(new Context(NULL));
    18                     ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances();
     18                    ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances(0);
    1919                }
    2020
    2121                virtual void TearDown()
    2222                {
    23                     ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances();
     23                    ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances(0);
    2424                    Context::setRootContext(NULL);
    2525                }
  • code/branches/core7/test/core/object/ContextTest.cc

    r10481 r10530  
    2424                {
    2525                    Context::setRootContext(new Context(NULL));
    26                     ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances();
     26                    ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances(0);
    2727                }
    2828
    2929                virtual void TearDown()
    3030                {
    31                     ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances();
     31                    ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances(0);
    3232                    Context::setRootContext(NULL);
    3333                }
  • code/branches/core7/test/core/object/IteratorTest.cc

    r10481 r10530  
    3535                {
    3636                    Context::setRootContext(new Context(NULL));
    37                     ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances();
     37                    ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances(0);
    3838                }
    3939
    4040                virtual void TearDown()
    4141                {
    42                     ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances();
     42                    ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances(0);
    4343                    Context::setRootContext(NULL);
    4444                }
  • code/branches/core7/test/core/object/ListableTest.cc

    r10481 r10530  
    4040                {
    4141                    Context::setRootContext(new Context(NULL));
    42                     ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances();
     42                    ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances(0);
    4343                }
    4444
    4545                virtual void TearDown()
    4646                {
    47                     ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances();
     47                    ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances(0);
    4848                    Context::setRootContext(NULL);
    4949                }
  • code/branches/core7/test/core/object/ObjectListIteratorTest.cc

    r10481 r10530  
    2727                {
    2828                    Context::setRootContext(new Context(NULL));
    29                     ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances();
     29                    ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances(0);
    3030                }
    3131
    3232                virtual void TearDown()
    3333                {
    34                     ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances();
     34                    ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances(0);
    3535                    Context::setRootContext(NULL);
    3636                }
  • code/branches/core7/test/core/singleton/ScopeTest.cc

    r10464 r10530  
    2727                virtual void SetUp()
    2828                {
    29                     ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances();
     29                    ModuleInstance::getCurrentModuleInstance()->loadAllStaticallyInitializedInstances(0);
    3030                }
    3131
    3232                virtual void TearDown()
    3333                {
    34                     ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances();
     34                    ModuleInstance::getCurrentModuleInstance()->unloadAllStaticallyInitializedInstances(0);
    3535                }
    3636        };
Note: See TracChangeset for help on using the changeset viewer.