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
|
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;
|
||||||
}
|
}
|
||||||
|
|||||||
+3
@@ -12,6 +12,9 @@
|
|||||||
#include <cppunit/TestSuite.h>
|
#include <cppunit/TestSuite.h>
|
||||||
|
|
||||||
|
|
||||||
|
using namespace BPrivate;
|
||||||
|
|
||||||
|
|
||||||
GeolocationTest::GeolocationTest()
|
GeolocationTest::GeolocationTest()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user