Author: jfarrell
Date: Sat Oct 6 02:51:45 2012
New Revision: 1394906
URL: http://svn.apache.org/viewvc?rev=1394906&view=rev
Log:
Thrift-1714:Explicitly add CWD to Ruby test_suites.rb
Client: rb
Patch: Nathan Beyer
test/rb/Makefile.am contains a invocation or the ruby interpreter to run
test_suites.rb that needs modification to run correctly on Ruby 1.9+. Ruby 1.9+
doesn't include the CWD by default anymore.
Modified:
thrift/trunk/test/rb/Makefile.am
Modified: thrift/trunk/test/rb/Makefile.am
URL:
http://svn.apache.org/viewvc/thrift/trunk/test/rb/Makefile.am?rev=1394906&r1=1394905&r2=1394906&view=diff
==============================================================================
--- thrift/trunk/test/rb/Makefile.am (original)
+++ thrift/trunk/test/rb/Makefile.am Sat Oct 6 02:51:45 2012
@@ -24,5 +24,5 @@ stubs: ../ThriftTest.thrift ../SmallTest
$(THRIFT) --gen rb ../SmallTest.thrift
check: stubs
- $(RUBY) test_suite.rb
+ $(RUBY) -I. test_suite.rb