blob: 5499fb7a9112a6ca7d206bde9399774547717e5a [file] [log] [blame]
Jens Geyera7da4882013-07-18 00:33:05 +02001#
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
18#
19
Jens Geyer45687922014-04-07 21:20:16 +020020THRIFT = $(top_srcdir)/compiler/cpp/thrift -out gopath/src/ --gen go:thrift_import=thrift
Jens Geyera7da4882013-07-18 00:33:05 +020021THRIFTTEST = $(top_srcdir)/test/ThriftTest.thrift
22
23# Thrift for GO has problems with complex map keys: THRIFT-2063
Jens Geyer20bcf382014-04-16 00:27:31 +020024gopath: $(top_srcdir)/compiler/cpp/thrift $(THRIFTTEST) \
25 IncludesTest.thrift \
26 NamespacedTest.thrift \
Jens Geyer751c97c2014-04-22 23:36:27 +020027 MultiplexedProtocolTest.thrift \
Jens Geyer731975a2014-05-02 00:24:24 +020028 OnewayTest.thrift \
29 OptionalFieldsTest.thrift \
30 ServicesTest.thrift \
31 TypedefFieldTest.thrift \
32 RefAnnotationFieldsTest.thrift
Jens Geyera7da4882013-07-18 00:33:05 +020033 mkdir -p gopath/src
Jens Geyer731975a2014-05-02 00:24:24 +020034 grep -v list.*map.*list.*map $(THRIFTTEST) | grep -v 'set<Insanity>' > ThriftTest.thrift
Jens Geyer45687922014-04-07 21:20:16 +020035 $(THRIFT) -r IncludesTest.thrift
36 $(THRIFT) BinaryKeyTest.thrift
Jens Geyer751c97c2014-04-22 23:36:27 +020037 $(THRIFT) MultiplexedProtocolTest.thrift
Jens Geyerc2ccca82014-04-14 22:36:50 +020038 $(THRIFT) OnewayTest.thrift
Jens Geyer731975a2014-05-02 00:24:24 +020039 $(THRIFT) OptionalFieldsTest.thrift
40 $(THRIFT) ServicesTest.thrift
41 $(THRIFT) TypedefFieldTest.thrift
42 $(THRIFT) RefAnnotationFieldsTest.thrift
43 GOPATH=`pwd`/gopath $(GO) get code.google.com/p/gomock/gomock
Jens Geyera7da4882013-07-18 00:33:05 +020044 ln -nfs ../../../thrift gopath/src/thrift
Jens Geyer45687922014-04-07 21:20:16 +020045 ln -nfs ../../tests gopath/src/tests
Jens Geyera7da4882013-07-18 00:33:05 +020046 touch gopath
47
48check: gopath
Jens Geyer731975a2014-05-02 00:24:24 +020049 GOPATH=`pwd`/gopath $(GO) build \
50 IncludesTest \
51 BinaryKeyTest \
52 ServicesTest \
53 TypedefFieldTest \
54 RefAnnotationFieldsTest
Jens Geyer45687922014-04-07 21:20:16 +020055 GOPATH=`pwd`/gopath $(GO) test thrift tests
Jens Geyera7da4882013-07-18 00:33:05 +020056
57clean-local:
Jens Geyer45687922014-04-07 21:20:16 +020058 $(RM) -r gopath ThriftTest.thrift
Jens Geyera7da4882013-07-18 00:33:05 +020059
60client: stubs
61 $(GO) run TestClient.go
jfarrell32d323e2013-08-15 20:39:58 -040062
63EXTRA_DIST = \
64 IncludesTest.thrift \
65 NamespacedTest.thrift