blob: 86592108d54f512bde9008e1a4fcd6e39bafdbcf [file] [log] [blame]
David Reissc6fc3292007-08-30 00:58:43 +00001#!/bin/bash
2
3rm -rf gen-py
4../../../compiler/cpp/thrift -py test1.thrift || exit 1
5../../../compiler/cpp/thrift -py test2.thrift || exit 1
6PYTHONPATH=./gen-py python -c 'import foo.bar.baz' || exit 1
7PYTHONPATH=./gen-py python -c 'import test2' || exit 1
8PYTHONPATH=./gen-py python -c 'import test1' &>/dev/null && exit 1 # Should fail.
9cp -r gen-py simple
10../../../compiler/cpp/thrift -r -py test2.thrift || exit 1
11PYTHONPATH=./gen-py python -c 'import test2' || exit 1
12diff -ur simple gen-py > thediffs
13file thediffs | grep -s -q empty || exit 1
14rm -rf simple thediffs
15echo 'All tests pass!'