aboutsummaryrefslogtreecommitdiff
path: root/tests.sh
Commit message (Collapse)AuthorAgeFilesLines
* Cat the test-suite.log on errors for presubitsJisi Liu2018-03-191-1/+1
|
* Fix more memory leak for php c extension (#4211)Paul Yang2018-01-251-8/+8
| | | | | | * Fix more memory leak for php c extension * Fix memory leak for php5.5
* Fix php well known type conformance tests (#3828) (#3840)Paul Yang2017-11-041-1/+2
| | | | | | | | | | | | | | | * Fix php well known type conformance tests * Properly generate code for test.proto * Provide GPBMetadata files in c extensions for generated files to import. * Remove unnecessary test * Clean up code * Add declaration for initOnce. * Refactoring
* Merge remote-tracking branch 'origin/3.4.x' into masterJisi Liu2017-10-111-11/+16
|\
| * Exclude valid constant name from reserved name.Bo Yang2017-09-121-13/+15
| |
| * Add prefix to php reserved keywords.Bo Yang2017-09-081-9/+13
| |
| * Add mising cmake files in distJisi Liu2017-08-241-1/+0
| |
| * Make distcheck aware of test proto files.Jisi Liu2017-08-231-1/+1
| |
* | Add well known types to php runtime. (#3697)Paul Yang2017-10-051-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add well known types to php runtime. * Fix php7.0 tests * No longer generate empty.proto in test as it has been included in runtime. * Fix zts build * Clean code * Rename g_p_b_empty to empty. * Don't generate code for empty.proto in compatibility test * Fix 32-bit * Fix mac build * Fix Makefile.am to add new files
* | Fix go example test.Feng Xiao2017-09-131-1/+1
| | | | | | | | It needs "-I" flag to find imported file google/protobuf/timestamp.proto
* | Drop python2.6Jie Luo2017-08-221-4/+3
| | | | | | | | | | | | | | Jenkins complains for python 2.6 DEPRECATION: Python 2.6 is no longer supported by the Python core team ERROR: InvocationError: '/tmp/protobuf/protobuf/python/.tox/py26-cpp/bin/python setup.py -q build_py' https://grpc-testing.appspot.com/job/protobuf_pull_request/1502/testReport/junit/(root)/python_cpp/python_cpp/
* | Add Python 3.5 3.6Jie Luo2017-08-221-2/+4
| |
* | Revert "Drop Python 3.3 from testing & add Python 3.5, 3.6 (#3512)" (#3524)Jie Luo2017-08-181-4/+3
| | | | | | This reverts commit 703f414ca6102e669ece2dcd5f7d9c2b05ca222e.
* | Drop Python 3.3 from testing & add Python 3.5, 3.6 (#3512)cclauss2017-08-181-3/+4
| | | | | | | | | | | | | | | | * Drop Python 3.3 from testing & add Python 3.5, 3.6 Python 3.3 goes [EOL](https://docs.python.org/devguide/index.html#branchstatus) next month. * Sync test.sh with the Python versions in tox.ini
* | Merge pull request #3454 from anandolee/masterJie Luo2017-08-071-2/+1
|\ \ | |/ |/| Add python 2.6 test back for cpp implementation.
| * Add python 2.6 test back for cpp implementation. Json format issue was fixed ↵Jie Luo2017-08-031-2/+1
| | | | | | | | in #869
* | Expose descriptor API in php c extension (#3422)Paul Yang2017-08-021-1/+10
|/
* Travis: Exclude CMake .pc filesAxel Huebl2017-07-231-0/+1
| | | | | | Exclude the unconfigured .pc input files of the CMake based install: they shall not be packed/distributed, only their outputs are
* Merge pull request #3375 from TeBoring/3.3.xPaul Yang2017-07-191-0/+37
|\ | | | | Merge 3.3.x into master
| * Merge 3.3.x into masterBo Yang2017-07-181-0/+37
| |\
| | * Fix c extension for php7.1. (#3077)Paul Yang2017-05-101-0/+37
| | |
* | | Support PHP generic services (#3269)Matt A2017-07-181-1/+1
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add php_generic_services option * Generate PHP generic services * Respect namespaces for generated PHP services * Test PHP generated services * Rename PHP generator service method doc comment function * Correct phpdoc service method case * Test namespaced PHP generic services * Always use the FQCN for PHP generic service input/output * Add generated_service_test to php test.sh * Add php service test protos to CI * Add php service files to php_EXTRA_DIST * Use Interface suffix for php generic services
* | Add json encode/decode for php. (#3226)Paul Yang2017-06-301-26/+33
| | | | | | | | | | | | | | | | | | | | * Add json encode/decode for php. * Fix php conformance test on 32-bit machines. * Fix conformance test for c extension. * Fix comments
* | Add new file option php_namespace. (#3162)Paul Yang2017-06-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add new file option php_namespace. Use this option to change the namespace of php generated classes. Default is empty. When this option is empty, the package name will be used for determining the namespace. * Uncomment commented tests * Revert gdb test change * Update csharp descriptor. * Add test for empty php_namespace.
* | Convert C# projects to MSBuild (csproj) formatJon Skeet2017-05-241-16/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This has one important packaging change: the netstandard version now depends (implicitly) on netstandard1.6.1 rather than on individual packages. This is the preferred style of dependency, and shouldn't affect any users - see http://stackoverflow.com/questions/42946951 for details. The tests are still NUnit, but NUnit doesn't support "dotnet test" yet; the test project is now an executable using NUnitLite. (When NUnit supports dotnet test, we can adapt to it.) Note that the project will now only work in Visual Studio 2017 (and Visual Studio Code, and from the command line with the .NET Core 1.0.0 SDK); Visual Studio 2015 does *not* support this project file format.
* | Add compatibility test for php. (#3041)Paul Yang2017-05-051-1/+12
|/ | | | | | * Add compatibility test for php. * Revert API incompatible change.
* Allow proto files to import descriptor.proto (#2995)Paul Yang2017-04-201-0/+1
| | | | | | | | | descriptor.proto uses proto2 syntax, which is not ready for external usage. However, some proto3 files import descriptor.proto and cannot be used. In this PR, all references (We cheated by only removing extensions, which is enough for now. User should avoid using messages defined in descriptor.proto as field type.) to content in descriptor.proto are removed from generated files. Those that import descriptor.proto can be used like other proto files.
* Make PHP c extension work with PHP7 (#2951)Paul Yang2017-04-191-60/+65
|
* Merge pull request #1662 from haberman/jsconformanceJoshua Haberman2017-03-271-0/+1
|\ | | | | Conformance tests for JavaScript (Node.js). 15 tests are failing.
| * Added JavaScript conformance tests. All tests pass!Josh Haberman2017-03-061-0/+1
| |
* | Add file option php_class_prefix (#2849)Paul Yang2017-03-171-1/+1
| | | | | | | | This option will be prepended to generated classes of all messages in the containing file.
* | Rename encode/decode to serializeToString/mergeFromString (#2795)Paul Yang2017-03-081-2/+17
|/ | | | | This better shows the semantic of the API. For already setted fields, mergeFromString do replacement for singular fields and appending for repeated fields.
* Merge pull request #2701 from anandolee/masterJie Luo2017-02-131-1/+4
|\ | | | | Add csharp compatibility tests against v3.0.0
| * Add csharp compatibility tests against v3.0.0 and run on Travis.Jie Luo2017-02-101-1/+4
| |
* | Add clear method to PHP message (#2700)Paul Yang2017-02-111-2/+2
| |
* | Implement json encoding decoding for php. (#2682)Paul Yang2017-02-081-4/+8
| |
* | Add fixed version to phpunit used in travis (#2673)Paul Yang2017-02-071-1/+1
| |
* | Add conformance test for php (#2655)Paul Yang2017-02-011-0/+31
|/
* Add python compatibility tests against v2.5.0 amd run on Travis.Jie Luo2017-01-261-1/+13
|
* Reenable cocoapods objc test and remove unnecessary workaround for rvmSergio Campama2016-12-091-9/+0
|
* Merge pull request #2473 from thomasvl/update_xcodesThomas Van Lenten2016-12-091-5/+15
|\ | | | | Update xcode version support and travis usage
| * Skip benchmark test if cmake isn't installed.Thomas Van Lenten2016-12-091-5/+15
| |
| * Xcode 8.1 supportThomas Van Lenten2016-12-091-1/+1
| | | | | | | | | | | | | | | | - Add entries to objectivec/DevTools/full_mac_build.sh - Support `-quiet` via an option on full_mac_build.sh. NOTE: we don't use this on travis because the lack of output for a long time could cause travis to kill the build (when we get a slow VM). - Update travis config to use newer images.
* | Disable jruby test. (#2469)Paul Yang2016-12-081-1/+1
| | | | | | Missed in #2467.
* | Update commit id in Dockerfile to trigger update. (#2467)Paul Yang2016-12-081-4/+10
| |
* | Make php generated code conform to PSR-4. (#2435)Paul Yang2016-12-081-1/+22
|/ | | | 1. Generate single file for each message. 2. Lazily initiate metadata.
* Update EXTRA_DIST lists.Feng Xiao2016-11-181-1/+1
|
* Fix php c extension on 32-bit machines. (#2348)Paul Yang2016-11-101-0/+7
|
* Implement RepeatedFieldIter for c extension. (#2333)Paul Yang2016-11-081-1/+2
|
* Fix pure php implementation for 32-bit machine. (#2282)Paul Yang2016-10-251-0/+21
|