diff options
| author | Steve Bennetts <steve@lindenlab.com> | 2009-10-22 13:10:59 -0700 |
|---|---|---|
| committer | Steve Bennetts <steve@lindenlab.com> | 2009-10-22 13:10:59 -0700 |
| commit | b8ce05ed08a7db0825c04c217888814ef523027a (patch) | |
| tree | cae04332048f649e1280d3bdc3d20f46df773e67 /indra/llmessage/tests/llhost_test.cpp | |
| parent | e5484e56b3c13e65bd31d7bf21c1cd3a2d9333f2 (diff) | |
| parent | a464d469705aeae57fcdbfafa45e2bf592a182c5 (diff) | |
merge
Diffstat (limited to 'indra/llmessage/tests/llhost_test.cpp')
| -rw-r--r-- | indra/llmessage/tests/llhost_test.cpp | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/indra/llmessage/tests/llhost_test.cpp b/indra/llmessage/tests/llhost_test.cpp index 2424dbcb6b..7e5c3a117b 100644 --- a/indra/llmessage/tests/llhost_test.cpp +++ b/indra/llmessage/tests/llhost_test.cpp @@ -157,7 +157,8 @@ namespace tut template<> template<> void host_object::test<9>() { - std::string hostStr = "linux.org"; +// skip("setHostByName(\"google.com\"); getHostName() -> (e.g.) \"yx-in-f100.1e100.net\""); + std::string hostStr = "linux.org"; LLHost host; host.setHostByName(hostStr); @@ -166,7 +167,15 @@ namespace tut // the main domain name and not do the exact compare std::string hostname = host.getHostName(); - ensure("getHostName failed", hostname.find(hostStr) != std::string::npos); + try + { + ensure("getHostName failed", hostname.find(hostStr) != std::string::npos); + } + catch (const std::exception&) + { + std::cerr << "set '" << hostStr << "'; reported '" << hostname << "'" << std::endl; + throw; + } } // setHostByName for dotted IP |
