diff options
| -rwxr-xr-x | indra/llcommon/tests/llinstancetracker_test.cpp | 17 | ||||
| -rwxr-xr-x | indra/llcommon/tests/wrapllerrs.h | 8 | 
2 files changed, 13 insertions, 12 deletions
diff --git a/indra/llcommon/tests/llinstancetracker_test.cpp b/indra/llcommon/tests/llinstancetracker_test.cpp index e769c3e22c..601d28ea3e 100755 --- a/indra/llcommon/tests/llinstancetracker_test.cpp +++ b/indra/llcommon/tests/llinstancetracker_test.cpp @@ -194,20 +194,21 @@ namespace tut      {          set_test_name("delete Keyed with outstanding instance_iter");          std::string what; -        Keyed* keyed = new Keyed("one"); +        Keyed* keyed = new Keyed("delete Keyed with outstanding instance_iter");          { -            WrapLL_ERRS wrapper; +            WrapLLErrs wrapper;              Keyed::instance_iter i(Keyed::beginInstances());              try              {                  delete keyed;              } -            catch (const WrapLL_ERRS::FatalException& e) +            catch (const WrapLLErrs::FatalException& e)              {                  what = e.what();              }          }          ensure(! what.empty()); +		delete keyed;      }      template<> template<> @@ -215,15 +216,15 @@ namespace tut      {          set_test_name("delete Keyed with outstanding key_iter");          std::string what; -        Keyed* keyed = new Keyed("one"); +        Keyed* keyed = new Keyed("delete Keyed with outstanding key_it");          { -            WrapLL_ERRS wrapper; +            WrapLLErrs wrapper;              Keyed::key_iter i(Keyed::beginKeys());              try              {                  delete keyed;              } -            catch (const WrapLL_ERRS::FatalException& e) +            catch (const WrapLLErrs::FatalException& e)              {                  what = e.what();              } @@ -238,13 +239,13 @@ namespace tut          std::string what;          Unkeyed* unkeyed = new Unkeyed;          { -            WrapLL_ERRS wrapper; +            WrapLLErrs wrapper;              Unkeyed::instance_iter i(Unkeyed::beginInstances());              try              {                  delete unkeyed;              } -            catch (const WrapLL_ERRS::FatalException& e) +            catch (const WrapLLErrs::FatalException& e)              {                  what = e.what();              } diff --git a/indra/llcommon/tests/wrapllerrs.h b/indra/llcommon/tests/wrapllerrs.h index a4d3a4e026..3137bd8fea 100755 --- a/indra/llcommon/tests/wrapllerrs.h +++ b/indra/llcommon/tests/wrapllerrs.h @@ -46,9 +46,9 @@  // replicate, but better to reuse  extern void wouldHaveCrashed(const std::string& message); -struct WrapLL_ERRS +struct WrapLLErrs  { -    WrapLL_ERRS(): +    WrapLLErrs():          // Resetting Settings discards the default Recorder that writes to          // stderr. Otherwise, expected llerrs (LL_ERRS) messages clutter the          // console output of successful tests, potentially confusing things. @@ -57,10 +57,10 @@ struct WrapLL_ERRS          mPriorFatal(LLError::getFatalFunction())      {          // Make LL_ERRS call our own operator() method -        LLError::setFatalFunction(boost::bind(&WrapLL_ERRS::operator(), this, _1)); +        LLError::setFatalFunction(boost::bind(&WrapLLErrs::operator(), this, _1));      } -    ~WrapLL_ERRS() +    ~WrapLLErrs()      {          LLError::setFatalFunction(mPriorFatal);          LLError::restoreSettings(mPriorErrorSettings);  | 
