diff options
Diffstat (limited to 'indra/test')
| -rw-r--r-- | indra/test/CMakeLists.txt | 3 | ||||
| -rw-r--r-- | indra/test/llhttpdate_tut.cpp | 3 | 
2 files changed, 5 insertions, 1 deletions
diff --git a/indra/test/CMakeLists.txt b/indra/test/CMakeLists.txt index 02dd01e1b0..42a32f95b1 100644 --- a/indra/test/CMakeLists.txt +++ b/indra/test/CMakeLists.txt @@ -35,8 +35,8 @@ set(test_SOURCE_FILES      llblowfish_tut.cpp      llbuffer_tut.cpp      lldate_tut.cpp -    lldoubledispatch_tut.cpp      lldependencies_tut.cpp +    lldoubledispatch_tut.cpp      llerror_tut.cpp      llevents_tut.cpp      llhost_tut.cpp @@ -130,6 +130,7 @@ target_link_libraries(test      ${BOOST_PROGRAM_OPTIONS_LIBRARY}      ${BOOST_REGEX_LIBRARY}      ${DL_LIBRARY} +    ${GOOGLE_PERFTOOLS_LIBRARIES}      )  if (WINDOWS) diff --git a/indra/test/llhttpdate_tut.cpp b/indra/test/llhttpdate_tut.cpp index b764696dae..b9733dc030 100644 --- a/indra/test/llhttpdate_tut.cpp +++ b/indra/test/llhttpdate_tut.cpp @@ -50,6 +50,7 @@ namespace tut      template<> template<>      void httpdate_object::test<1>()      { +          static std::string epoch_expected = "Thursday, 01 Jan 1970 00:00:00 GMT" ;          ensure("Check Epoch in RFC 1123", ( epoch_expected == some_date.asRFC1123()));      } @@ -57,6 +58,7 @@ namespace tut      template<> template<>      void httpdate_object::test<2>()      { +          static std::string expected = "Wednesday, 18 Jul 2007 22:17:24 GMT" ;          some_date = LLDate(1184797044.037586);          ensure("Check some timestamp in RFC 1123", ( expected == some_date.asRFC1123())); @@ -66,6 +68,7 @@ namespace tut      template<> template<>      void httpdate_object::test<3>()      { +          //F64 sometime = LLFrameTimer::getTotalSeconds();          time_t sometime;          time(&sometime);  | 
