mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-18 20:24:04 +01:00
Restore suffix for TestLibrary.
Signed-off-by: FrancisANDRE <zosrothko@orange.fr>
This commit is contained in:
parent
ae51e05c1e
commit
2c601fd12b
@ -39,6 +39,7 @@ SharedLibraryTest::~SharedLibraryTest()
|
||||
void SharedLibraryTest::testSharedLibrary1()
|
||||
{
|
||||
std::string path = "TestLibrary";
|
||||
path.append(SharedLibrary::suffix());
|
||||
SharedLibrary sl;
|
||||
assert (!sl.isLoaded());
|
||||
sl.load(path);
|
||||
@ -72,6 +73,7 @@ void SharedLibraryTest::testSharedLibrary1()
|
||||
void SharedLibraryTest::testSharedLibrary2()
|
||||
{
|
||||
std::string path = "TestLibrary";
|
||||
path.append(SharedLibrary::suffix());
|
||||
SharedLibrary sl(path);
|
||||
assert (sl.getPath() == path);
|
||||
assert (sl.isLoaded());
|
||||
|
Loading…
Reference in New Issue
Block a user