#!/bin/bash
if [ $# -ne 2 ]
then
echo "testphp <test dir> <src dir>"
echo "example: $ testphp test ."
exit
fi
clear
inotifywait $2 -qmre CLOSE_WRITE --format='%f' | while read CUAL ; do
if [ $? != 0 ]; then exit; fi;
clear
phpunit.phar --log-junit /tmp/ultimo.txt --color -v $1
done
No comments:
Post a Comment