#! /bin/sh
status=1
LOG=tmp.log

case "$1" in
b) ./test_bayestoken.py > $LOG ; status=$? ;;
t) ./test_tokenizer.py > $LOG ; status=$? ;;
s) ./test_surrogate.py > $LOG ; status=$? ;;
*)
	./test_comment.py > $LOG
	status=$?
	;;
esac
cat $LOG

echo "status=$status"
