remove last BIGINT usage in tests
This commit is contained in:
parent
89f667fe6e
commit
15ea77ded5
1 changed files with 1 additions and 8 deletions
|
@ -249,7 +249,6 @@ SECTION("to string") {
|
||||||
REQUIRE( out == "4294967295" );
|
REQUIRE( out == "4294967295" );
|
||||||
out.clear();
|
out.clear();
|
||||||
|
|
||||||
#ifdef BIGINT
|
|
||||||
// long long
|
// long long
|
||||||
to_string(out,mapnik::value_integer(-0));
|
to_string(out,mapnik::value_integer(-0));
|
||||||
REQUIRE( out == "0" );
|
REQUIRE( out == "0" );
|
||||||
|
@ -262,13 +261,7 @@ SECTION("to string") {
|
||||||
to_string(out,mapnik::value_integer(9223372036854775807));
|
to_string(out,mapnik::value_integer(9223372036854775807));
|
||||||
REQUIRE( out == "9223372036854775807" );
|
REQUIRE( out == "9223372036854775807" );
|
||||||
out.clear();
|
out.clear();
|
||||||
#else
|
|
||||||
#ifdef _MSC_VER
|
|
||||||
#pragma NOTE("BIGINT not defined so skipping large number conversion tests")
|
|
||||||
#else
|
|
||||||
#warning BIGINT not defined so skipping large number conversion tests
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
// bool
|
// bool
|
||||||
to_string(out, true);
|
to_string(out, true);
|
||||||
REQUIRE( out == "true" );
|
REQUIRE( out == "true" );
|
||||||
|
|
Loading…
Reference in a new issue