- 06 Apr, 2017 1 commit
-
-
Adam Cozzette authored
Fix duplicate fields test and Any test. The repeated version is passing because nu…
-
- 05 Apr, 2017 2 commits
-
-
Jie Luo authored
Use PyUnicode_AsEncodedString() instead of PyUnicode_AsEncodedObject()
-
Anuraag Agrawal authored
Fix test for unexpected type url when parsing Any. Currently, the test fails since TestAllTypes doesn't have field '@type', which is the same test as testUnknownFields.
-
- 04 Apr, 2017 3 commits
-
-
Adam Cozzette authored
Adding default shell env to allow non-default compilers
-
Adam Cozzette authored
Fix error message for int64 parse failure.
-
Anuraag Agrawal authored
Fix duplicate fields test. The repeated version is passing because null values in a repeated field are rejected and not testing what it wanted to. Also adds a oneof version that verifies the case of oneof fields of different names (currently only same name check seems to be tested). Also fix spelling of a test.
-
- 03 Apr, 2017 6 commits
-
-
Adam Cozzette authored
JS compatibility tests
-
Adam Cozzette authored
-
Adam Cozzette authored
-
Marco A. Harrendorf authored
I am adding default shell environment, so that protobuf compilation makes use of set LD_LIBRARY_PATH and so on. In this way, also non-default gcc installations (e.g. not in /usr/lib) can be used to compile protobuf. This would fix the following issue: https://github.com/bazelbuild/bazel/issues/2515
-
Anuraag Agrawal authored
-
Anuraag Agrawal authored
-
- 29 Mar, 2017 7 commits
-
-
Jie Luo authored
-
-
Thomas Van Lenten authored
Remove the use of dispatch_once that is heap backed.
-
Thomas Van Lenten authored
Apple recently updated the docs on dispatch_once to point out that the storage for the dispatch_once_t must be static or global, but not something that was ever used before as the implementation doesn't use a memory barrier. So we drop the use and create the semaphore when needed and use an atomic swap deal with any threading races.
-
Thomas Van Lenten authored
Add support for Xcode 8.3 to the build helper.
-
Thomas Van Lenten authored
-
Thomas Van Lenten authored
Add some new ignores for things generated in conformance.
-
- 28 Mar, 2017 6 commits
-
-
drivehappy authored
* Issue #2211: Addressing GCC warning on enumeral/non-enumeral in conditional expression. * Updated per 80 character wrap.
-
Adam Cozzette authored
Added a workaround to allow building for NaCl
-
Adam Cozzette authored
arm-nacl-clang seems to produce a mysterious compiler error when it encounters __builtin_clzll, so when we are building for NaCl, let's avoid that in favor of the portable implementation of Log2FloorNonZero64.
-
Thomas Van Lenten authored
-
Thomas Van Lenten authored
Raise the recursion limit to 100 to match other languages.
-
Thomas Van Lenten authored
-
- 27 Mar, 2017 3 commits
-
-
Joshua Haberman authored
Changed go_package for plugin.proto.
-
Joshua Haberman authored
Conformance tests for JavaScript (Node.js). 15 tests are failing.
-
Jie Luo authored
Add FormatEnumsAsIntegers support for Json Format. Scale JsonFormatter.Settings for multi options.
-
- 24 Mar, 2017 1 commit
-
-
Jie Luo authored
-
- 22 Mar, 2017 2 commits
- 21 Mar, 2017 1 commit
-
-
Paul Yang authored
-
- 20 Mar, 2017 5 commits
-
-
Adam Cozzette authored
migrate delimited messages functions to util package
-
Bairen Yi authored
-
Feng Xiao authored
Remove duplicated copyright statement
-
Adam Cozzette authored
fix attributes warning
-
Adam Cozzette authored
Ruby: only link against specific version of memcpy if we're using glibc
-
- 17 Mar, 2017 3 commits
-
-
Feng Xiao authored
Add preserve_proto_field_names option to JsonPrintOptions
-
Adam Cozzette authored
We have some special code in wrap_memcpy.c to ensure that we use the 2.2.5 version of memcpy, for compatibility with older versions of glibc. However, we need to make sure we only attempt to do this when we are actually building with glibc, so that the code can also build successfully against other libc implementations such as musl.
-
Jie Luo authored
DefaultValueObjectWriter should populate oneof message field
-