runtest.sh : ajout aide ; changement option fichier test
This commit is contained in:
parent
f96c52bded
commit
1695abc91f
22
runtest.sh
22
runtest.sh
@ -16,6 +16,20 @@
|
|||||||
# `--detectOpenHandles` to troubleshoot this issue.
|
# `--detectOpenHandles` to troubleshoot this issue.
|
||||||
# voir aussi https://github.com/SeleniumHQ/selenium-ide/issues/1819
|
# voir aussi https://github.com/SeleniumHQ/selenium-ide/issues/1819
|
||||||
# ------------------------------------------------------------------------
|
# ------------------------------------------------------------------------
|
||||||
|
|
||||||
|
aide()
|
||||||
|
{
|
||||||
|
cat <<EOF
|
||||||
|
Exécuter un, plusieurs ou tous les tests d'un fichier de test Selenium
|
||||||
|
Appel : $(basename $0) [-f fichier] [-a] [-h] [test ..]
|
||||||
|
|
||||||
|
-f fichier : fichier de test (défaut : paheko.side)
|
||||||
|
-h : afficher cette aide
|
||||||
|
-a : exécuter tous les tests du fichier
|
||||||
|
test : nom (partiel ou complet) d'un test ou d'une suite à exécuter
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
traiter_test()
|
traiter_test()
|
||||||
{
|
{
|
||||||
motif="^Ran all test suites.*"
|
motif="^Ran all test suites.*"
|
||||||
@ -63,7 +77,7 @@ done
|
|||||||
while [[ $# -gt 0 ]]
|
while [[ $# -gt 0 ]]
|
||||||
do
|
do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
"-t")
|
-f )
|
||||||
shift
|
shift
|
||||||
TESTFILE="$1"
|
TESTFILE="$1"
|
||||||
if
|
if
|
||||||
@ -73,11 +87,15 @@ do
|
|||||||
fi
|
fi
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
"-a")
|
-a )
|
||||||
# exécuter tous les tests
|
# exécuter tous les tests
|
||||||
tests="tous"
|
tests="tous"
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
|
"-h" | -? )
|
||||||
|
aide
|
||||||
|
exit
|
||||||
|
;;
|
||||||
* )
|
* )
|
||||||
# exécuter les tests fournis en argument
|
# exécuter les tests fournis en argument
|
||||||
break
|
break
|
||||||
|
Loading…
Reference in New Issue
Block a user