From f65ae661fc0825680981e7f67fdd38fad29199d6 Mon Sep 17 00:00:00 2001 From: Kim van der Riet Date: Thu, 30 Apr 2009 17:31:25 +0000 Subject: Fixed testShlib and testAutoShlib path typo git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@770335 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/tests/Shlib.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qpid/cpp/src/tests/Shlib.cpp') 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"); @@ -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"); BOOST_REQUIRE(callMe != 0); -- cgit v1.2.1