#!/bin/bash
if [ -d "$1/tests" -a -f "$1/tests/Makefile" ] ; then {
	echo $1
	exit 0
} ; fi
	echo you must specify a ltp directory >&2
	exit 2

