diff options
author | Kim van der Riet <kpvdr@apache.org> | 2009-04-30 17:31:25 +0000 |
---|---|---|
committer | Kim van der Riet <kpvdr@apache.org> | 2009-04-30 17:31:25 +0000 |
commit | af6f980ead308669354ceaa2b6586d13bf886e5f (patch) | |
tree | 8f11836913de591a8389c8234253d4d554d2ebcf | |
parent | 5af5eef7eeff6cb26e34b1755471b4ee621d5edd (diff) | |
download | qpid-python-af6f980ead308669354ceaa2b6586d13bf886e5f.tar.gz |
Fixed testShlib and testAutoShlib path typo
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@770335 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | cpp/src/tests/Shlib.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/tests/Shlib.cpp b/cpp/src/tests/Shlib.cpp index e5aa672477..7d2f2456c7 100644 --- a/cpp/src/tests/Shlib.cpp +++ b/cpp/src/tests/Shlib.cpp @@ -36,7 +36,7 @@ QPID_AUTO_TEST_CASE(testShlib) { #if defined (QPID_MODULE_PREFIX) && defined (QPID_MODULE_SUFFIX) Shlib sh("./" QPID_MODULE_PREFIX "shlibtest" QPID_MODULE_SUFFIX); #else - Shlib sh(".lib/libshlibtest.so"); + Shlib sh(".libs/libshlibtest.so"); #endif // Double cast to avoid ISO warning. CallMe callMe=sh.getSymbol<CallMe>("callMe"); @@ -58,7 +58,7 @@ QPID_AUTO_TEST_CASE(testAutoShlib) { #if defined (QPID_MODULE_PREFIX) && defined (QPID_MODULE_SUFFIX) AutoShlib sh("./" QPID_MODULE_PREFIX "shlibtest" QPID_MODULE_SUFFIX); #else - AutoShlib sh(".lib/libshlibtest.so"); + AutoShlib sh(".libs/libshlibtest.so"); #endif CallMe callMe=sh.getSymbol<CallMe>("callMe"); BOOST_REQUIRE(callMe != 0); |