aboutsummaryrefslogtreecommitdiff
path: root/ruby/travis-test.sh
Commit message (Collapse)AuthorAgeFilesLines
* Fixed Ruby conformance tests by running them under rvm Ruby.Josh Haberman2016-01-111-2/+2
|
* Allow conformance test runner to tolerate crashes, and re-enable conformance ↵Josh Haberman2016-01-111-4/+1
| | | | tests.
* Disable conformance tests for csharp and ruby.Feng Xiao2015-12-211-3/+5
| | | | The testee program of these two languages crashes on some test input.
* Exclude JRuby from conformance tests for now.Josh Haberman2015-07-171-7/+16
| | | | Change-Id: Id008ebac5159f773e1bde8b85acb2626cbd16de8
* Added Ruby to conformance tests.Josh Haberman2015-07-161-1/+3
| | | | | | | | | | | | | This involved fixing a few important bugs in the Ruby implementation -- mostly cases of mixing upb field types and descriptor types (upb field types do not distinguish between int/sint/fixed/sfixed like descriptor types do). Also added protobuf-specific exceptions so parse errors can be caught specifically. Change-Id: Ib49d3db976900b2c6f3455c8b88af52cfb86e036
* Don't hardcode bashTamir Duberstein2015-05-151-1/+1
|
* Refactor Travis tests: split configs and run in parallel.Chris Fallin2015-05-141-5/+1
|
* Added Ruby to Travis testing.Chris Fallin2015-05-131-0/+19
- Added RVM-based Ruby test driver that tests MRI and JRuby. - Fixed JRuby compilation (at least in my current setup): force source version to 1.6 (Java 6) to allow generics and annotations. - Modify the skipped JRuby JSON tests so that the exit code is 0 (skip() results in a failing exit code from `rake test`). An upcoming PR should fix JSON under JRuby in general soon.