diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-03-25 17:08:34 +0200 | 
|---|---|---|
| committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-03-25 17:08:34 +0200 | 
| commit | d11df206018ea5192266141f242ff6372597ecd6 (patch) | |
| tree | b14da286deb5e54139f021434b2fd23ddc0388e8 | |
| parent | 090b506612ccd2344b3748902ae65efe816681c6 (diff) | |
SL-16831 Fix unit test
| -rw-r--r-- | indra/newview/llappviewer.cpp | 5 | ||||
| -rw-r--r-- | indra/newview/llappviewer.h | 2 | ||||
| -rw-r--r-- | indra/newview/tests/lllogininstance_test.cpp | 2 | 
3 files changed, 8 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 7d300d8573..8d200db244 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -3088,6 +3088,11 @@ bool LLAppViewer::initWindow()  	return true;  } +bool LLAppViewer::isUpdaterMissing() +{ +    return mUpdaterNotFound; +} +  void LLAppViewer::writeDebugInfo(bool isStatic)  {  #if LL_WINDOWS && LL_BUGSPLAT diff --git a/indra/newview/llappviewer.h b/indra/newview/llappviewer.h index c057bd82ef..bee335184b 100644 --- a/indra/newview/llappviewer.h +++ b/indra/newview/llappviewer.h @@ -98,7 +98,7 @@ public:      bool quitRequested() { return mQuitRequested; }      bool logoutRequestSent() { return mLogoutRequestSent; }  	bool isSecondInstance() { return mSecondInstance; } -    bool isUpdaterMissing() { return mUpdaterNotFound; } +    bool isUpdaterMissing(); // In use by tests  	void writeDebugInfo(bool isStatic=true); diff --git a/indra/newview/tests/lllogininstance_test.cpp b/indra/newview/tests/lllogininstance_test.cpp index 8d1956957c..7dd0c5faa3 100644 --- a/indra/newview/tests/lllogininstance_test.cpp +++ b/indra/newview/tests/lllogininstance_test.cpp @@ -218,6 +218,7 @@ bool llHashedUniqueID(unsigned char* id)  //-----------------------------------------------------------------------------  #include "../llappviewer.h"  void LLAppViewer::forceQuit(void) {} +bool LLAppViewer::isUpdaterMissing() { return true; }  LLAppViewer * LLAppViewer::sInstance = 0;  //----------------------------------------------------------------------------- @@ -343,6 +344,7 @@ namespace tut  			gSavedSettings.declareString("ClientSettingsFile", "test_settings.xml", "", LLControlVariable::PERSIST_NO);  			gSavedSettings.declareString("NextLoginLocation", "", "", LLControlVariable::PERSIST_NO);  			gSavedSettings.declareBOOL("LoginLastLocation", FALSE, "", LLControlVariable::PERSIST_NO); +            gSavedSettings.declareBOOL("CmdLineSkipUpdater", TRUE, "", LLControlVariable::PERSIST_NO);  			LLSD authenticator = LLSD::emptyMap();  			LLSD identifier = LLSD::emptyMap();  | 
