thrift/test/py/Makefile.am
David Reiss 9ff3b9d5fc Thrift: Python test improvements.
Summary:
- Add a serialization test for forwards/backwards compatibility.
- Hook the Python tests up to "make check".
- Miscellaneous changes to the Python tests.

Reviewed By: mcslee

Test Plan: Ran the test.


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665480 13f79535-47bb-0310-9956-ffa450edef68
2008-02-15 01:10:23 +00:00

28 lines
737 B
Makefile

THRIFT = $(top_srcdir)/compiler/cpp/thrift
py_unit_tests = \
SerializationTest.py \
TestEof.py \
RunClientServer.py
thrift_gen = \
gen-py/ThriftTest/__init__.py
helper_scripts= \
TestClient.py \
TestServer.py
check_SCRIPTS= \
$(thrift_gen) \
$(py_unit_tests) \
$(helper_scripts)
TESTS= $(py_unit_tests)
gen-py/ThriftTest/__init__.py: ../ThriftTest.thrift
$(THRIFT) -py $<
clean-local:
-rm -rf gen-py