diff options
author | Jose <jose@zeroc.com> | 2016-03-29 17:10:38 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-03-29 17:10:38 +0200 |
commit | 043a7b47a6a39996955fd222cf61efc7650cec63 (patch) | |
tree | 9cdda605b7d901e8980bca370f5a0536ea645547 /cpp/test/IceUtil/stacktrace/Client.cpp | |
parent | JS test Windows env for services (diff) | |
download | ice-043a7b47a6a39996955fd222cf61efc7650cec63.tar.bz2 ice-043a7b47a6a39996955fd222cf61efc7650cec63.tar.xz ice-043a7b47a6a39996955fd222cf61efc7650cec63.zip |
stacktrace test fixes
Diffstat (limited to 'cpp/test/IceUtil/stacktrace/Client.cpp')
-rw-r--r-- | cpp/test/IceUtil/stacktrace/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceUtil/stacktrace/Client.cpp b/cpp/test/IceUtil/stacktrace/Client.cpp index b6edb172a0e..682443b8732 100644 --- a/cpp/test/IceUtil/stacktrace/Client.cpp +++ b/cpp/test/IceUtil/stacktrace/Client.cpp @@ -256,7 +256,7 @@ int main(int argc, char* argv[]) test(expected.size() <= actual.size()); for(size_t i = 0; i < expected.size(); ++i) { - if(actual[i].find(expected[i]) != string::npos) + if(actual[i].find(expected[i]) == string::npos) { #if defined(_WIN32) && defined(NDEBUG) // @@ -273,7 +273,7 @@ int main(int argc, char* argv[]) test(false); } #else - test(false) + test(false); #endif } } |