gorealis v2 refactor (#5)
* Changing default timeout for start maintenance. * Upgrading dependencies to gorealis v2 and thrift 0.12.0 * Refactored to update to gorealis v2.
This commit is contained in:
parent
ad4dd9606e
commit
6ab5c9334d
1335 changed files with 137431 additions and 61530 deletions
10
vendor/git.apache.org/thrift.git/lib/cpp/test/AllProtocolTests.tcc
generated
vendored
10
vendor/git.apache.org/thrift.git/lib/cpp/test/AllProtocolTests.tcc
generated
vendored
|
@ -28,7 +28,7 @@
|
|||
|
||||
#include "GenericHelpers.h"
|
||||
|
||||
using boost::shared_ptr;
|
||||
using apache::thrift::stdcxx::shared_ptr;
|
||||
using namespace apache::thrift;
|
||||
using namespace apache::thrift::protocol;
|
||||
using namespace apache::thrift::transport;
|
||||
|
@ -190,14 +190,14 @@ void testProtocol(const char* protoname) {
|
|||
|
||||
testNaked<TProto, int64_t>(0);
|
||||
for (int64_t i = 0; i < 62; i++) {
|
||||
testNaked<TProto, int64_t>(1L << i);
|
||||
testNaked<TProto, int64_t>(-(1L << i));
|
||||
testNaked<TProto, int64_t>(1LL << i);
|
||||
testNaked<TProto, int64_t>(-(1LL << i));
|
||||
}
|
||||
|
||||
testField<TProto, T_I64, int64_t>(0);
|
||||
for (int i = 0; i < 62; i++) {
|
||||
testField<TProto, T_I64, int64_t>(1L << i);
|
||||
testField<TProto, T_I64, int64_t>(-(1L << i));
|
||||
testField<TProto, T_I64, int64_t>(1LL << i);
|
||||
testField<TProto, T_I64, int64_t>(-(1LL << i));
|
||||
}
|
||||
|
||||
testNaked<TProto, double>(123.456);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue