Fix unittests build.

Signed-off-by: John Scipione <[email protected]>
This commit is contained in:
Simon South
2015-10-27 10:28:36 -07:00
committed by John Scipione
parent d5447eb9c0
commit 1a28be27e8
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -14,9 +14,10 @@ UnitTestLib liblaunch_daemontest.so :
UtilityTest.cpp
# from the launch_daemon
NetworkWatcher.cpp
SettingsParser.cpp
Conditions.cpp
Utility.cpp
: be libshared.a [ TargetLibstdc++ ] [ TargetLibsupc++ ]
: be network bnetapi libshared.a [ TargetLibstdc++ ] [ TargetLibsupc++ ]
;
+1 -1
View File
@@ -50,7 +50,7 @@ UtilityTest::AddTests(BTestSuite& parent)
CppUnit::TestSuite& suite = *new CppUnit::TestSuite("UtilityTest");
suite.addTest(new CppUnit::TestCaller<UtilityTest>(
"UtilityTest::TestTranslatePath", &UtilityTest::TestEmpty));
"UtilityTest::TestTranslatePath", &UtilityTest::TestTranslatePath));
parent.addTest("UtilityTest", &suite);
}