Move geolocation test to the shared kit tests.

* Fix the build.
This commit is contained in:
Adrien Destugues
2014-10-02 08:27:44 +02:00
parent 8a65f8e900
commit 9581e328bd
6 changed files with 7 additions and 4 deletions
-1
View File
@@ -7,7 +7,6 @@ UnitTestLib servicekittest.so :
CookieTest.cpp CookieTest.cpp
DataTest.cpp DataTest.cpp
GeolocationTest.cpp
HttpTest.cpp HttpTest.cpp
UrlTest.cpp UrlTest.cpp
@@ -9,7 +9,6 @@
#include "CookieTest.h" #include "CookieTest.h"
#include "DataTest.h" #include "DataTest.h"
#include "GeolocationTest.h"
#include "HttpTest.h" #include "HttpTest.h"
#include "UrlTest.h" #include "UrlTest.h"
@@ -23,7 +22,6 @@ getTestSuite()
UrlTest::AddTests(*suite); UrlTest::AddTests(*suite);
HttpTest::AddTests(*suite); HttpTest::AddTests(*suite);
DataTest::AddTests(*suite); DataTest::AddTests(*suite);
GeolocationTest::AddTests(*suite);
return suite; return suite;
} }
@@ -12,6 +12,9 @@
#include <cppunit/TestSuite.h> #include <cppunit/TestSuite.h>
using namespace BPrivate;
GeolocationTest::GeolocationTest() GeolocationTest::GeolocationTest()
{ {
} }
+2 -1
View File
@@ -9,9 +9,10 @@ UnitTestLib libsharedtest.so :
SharedTestAddon.cpp SharedTestAddon.cpp
CalendarViewTest.cpp CalendarViewTest.cpp
GeolocationTest.cpp
NaturalCompareTest.cpp NaturalCompareTest.cpp
: be libshared.a [ TargetLibstdc++ ] [ TargetLibsupc++ ] : be libshared.a bnetapi [ TargetLibstdc++ ] [ TargetLibsupc++ ]
; ;
SubInclude HAIKU_TOP src tests kits shared shake_filter ; SubInclude HAIKU_TOP src tests kits shared shake_filter ;
@@ -8,6 +8,7 @@
#include <TestSuiteAddon.h> #include <TestSuiteAddon.h>
#include "CalendarViewTest.h" #include "CalendarViewTest.h"
#include "GeolocationTest.h"
#include "NaturalCompareTest.h" #include "NaturalCompareTest.h"
@@ -17,6 +18,7 @@ getTestSuite()
BTestSuite* suite = new BTestSuite("Shared"); BTestSuite* suite = new BTestSuite("Shared");
CalendarViewTest::AddTests(*suite); CalendarViewTest::AddTests(*suite);
GeolocationTest::AddTests(*suite);
NaturalCompareTest::AddTests(*suite); NaturalCompareTest::AddTests(*suite);
return suite; return suite;