Move geolocation test to the shared kit tests.
* Fix the build.
This commit is contained in:
@@ -7,7 +7,6 @@ UnitTestLib servicekittest.so :
|
||||
|
||||
CookieTest.cpp
|
||||
DataTest.cpp
|
||||
GeolocationTest.cpp
|
||||
HttpTest.cpp
|
||||
UrlTest.cpp
|
||||
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
|
||||
#include "CookieTest.h"
|
||||
#include "DataTest.h"
|
||||
#include "GeolocationTest.h"
|
||||
#include "HttpTest.h"
|
||||
#include "UrlTest.h"
|
||||
|
||||
@@ -23,7 +22,6 @@ getTestSuite()
|
||||
UrlTest::AddTests(*suite);
|
||||
HttpTest::AddTests(*suite);
|
||||
DataTest::AddTests(*suite);
|
||||
GeolocationTest::AddTests(*suite);
|
||||
|
||||
return suite;
|
||||
}
|
||||
|
||||
+3
@@ -12,6 +12,9 @@
|
||||
#include <cppunit/TestSuite.h>
|
||||
|
||||
|
||||
using namespace BPrivate;
|
||||
|
||||
|
||||
GeolocationTest::GeolocationTest()
|
||||
{
|
||||
}
|
||||
@@ -9,9 +9,10 @@ UnitTestLib libsharedtest.so :
|
||||
SharedTestAddon.cpp
|
||||
|
||||
CalendarViewTest.cpp
|
||||
GeolocationTest.cpp
|
||||
NaturalCompareTest.cpp
|
||||
|
||||
: be libshared.a [ TargetLibstdc++ ] [ TargetLibsupc++ ]
|
||||
: be libshared.a bnetapi [ TargetLibstdc++ ] [ TargetLibsupc++ ]
|
||||
;
|
||||
|
||||
SubInclude HAIKU_TOP src tests kits shared shake_filter ;
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
#include <TestSuiteAddon.h>
|
||||
|
||||
#include "CalendarViewTest.h"
|
||||
#include "GeolocationTest.h"
|
||||
#include "NaturalCompareTest.h"
|
||||
|
||||
|
||||
@@ -17,6 +18,7 @@ getTestSuite()
|
||||
BTestSuite* suite = new BTestSuite("Shared");
|
||||
|
||||
CalendarViewTest::AddTests(*suite);
|
||||
GeolocationTest::AddTests(*suite);
|
||||
NaturalCompareTest::AddTests(*suite);
|
||||
|
||||
return suite;
|
||||
|
||||
Reference in New Issue
Block a user