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 | f65ae661fc0825680981e7f67fdd38fad29199d6 (patch) | |
| tree | bdd4bcb5a13415f9454f8fac0227ba3447685479 /qpid/cpp/src/tests/Shlib.cpp | |
| parent | 07f0da3849c5351b76808cee17b9b85b8075b234 (diff) | |
| download | qpid-python-f65ae661fc0825680981e7f67fdd38fad29199d6.tar.gz | |
Fixed testShlib and testAutoShlib path typo
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@770335 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/Shlib.cpp')
| -rw-r--r-- | qpid/cpp/src/tests/Shlib.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/tests/Shlib.cpp b/qpid/cpp/src/tests/Shlib.cpp index e5aa672477..7d2f2456c7 100644 --- a/qpid/cpp/src/tests/Shlib.cpp +++ b/qpid/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); |
