You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by kc...@apache.org on 2008/06/18 02:51:25 UTC

svn commit: r668896 - /incubator/thrift/trunk/test/rb/Makefile

Author: kclark
Date: Tue Jun 17 17:51:25 2008
New Revision: 668896

URL: http://svn.apache.org/viewvc?rev=668896&view=rev
Log:
Swap out 'tests' target for 'check' in Ruby Makefile

Modified:
    incubator/thrift/trunk/test/rb/Makefile

Modified: incubator/thrift/trunk/test/rb/Makefile
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/test/rb/Makefile?rev=668896&r1=668895&r2=668896&view=diff
==============================================================================
--- incubator/thrift/trunk/test/rb/Makefile (original)
+++ incubator/thrift/trunk/test/rb/Makefile Tue Jun 17 17:51:25 2008
@@ -9,13 +9,13 @@
 # Tools
 THRIFT = ../../compiler/cpp/thrift
 
-all: stubs tests
+all: stubs check
 
 stubs: ../ThriftTest.thrift ../SmallTest.thrift
 	$(THRIFT) --gen rb ../ThriftTest.thrift
 	$(THRIFT) --gen rb ../SmallTest.thrift
 
-tests: stubs
+check: stubs
 	ruby test_suite.rb
 
 clean: