Swap out 'tests' target for 'check' in Ruby Makefile
authorKevin Clark <kclark@apache.org>
Wed, 18 Jun 2008 00:51:25 +0000 (00:51 +0000)
committerKevin Clark <kclark@apache.org>
Wed, 18 Jun 2008 00:51:25 +0000 (00:51 +0000)
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@668896 13f79535-47bb-0310-9956-ffa450edef68

test/rb/Makefile

index 3dd8875..5c1e61a 100644 (file)
@@ -9,13 +9,13 @@ target: all
 # 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: