X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=automated-tests%2Fscripts%2Fretriever.sh;h=102bb44ad3570495efe22798a1ceece37388c097;hp=248481e3813e3e080bb0f411cdc5d8733e3856bb;hb=c8b94589ca6b1f39b151c003f0fa5be4ec61b027;hpb=6c57cc54ac64c8387338bb4236984883b6204929 diff --git a/automated-tests/scripts/retriever.sh b/automated-tests/scripts/retriever.sh index 248481e..102bb44 100755 --- a/automated-tests/scripts/retriever.sh +++ b/automated-tests/scripts/retriever.sh @@ -165,8 +165,8 @@ function tc_fullinfo { ' $* } -TEMP=`getopt -o f,a:,m: --long full,anum:,mnum: \ - -n 'genmake' -- "$@"` +TEMP=`getopt -o f::,a:,m: --long full::,anum:,mnum: \ + -n 'retriever.sh' -- "$@"` if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi @@ -174,12 +174,13 @@ if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi eval set -- "$TEMP" opt_full=false +opt_full_dir= opt_anum= opt_mnum= while true ; do case "$1" in - -f|--full) opt_full=true ; shift ;; + -f|--full) opt_full_dir="$2" ; opt_full="true" ; shift 2 ;; -a|--anum) opt_anum="$2" ; shift 2 ;; -m|--mnum) opt_mnum="$2" ; shift 2 ;; --) shift ; break ;; @@ -187,6 +188,10 @@ while true ; do esac done +#echo "###Retriever" >& 2 +#echo opt_full: {$opt_full} >& 2 +#echo opt_full_dir: {$opt_full_dir} >& 2 + DIR=. if [ -n "$opt_anum" ] ; then DIR=$opt_anum @@ -194,8 +199,14 @@ if [ -n "$opt_anum" ] ; then elif [ -n "$opt_mnum" ] ; then DIR=$opt_mnum echo opt_mnum: DIR=$DIR >& 2 +elif [ "$opt_full" == "true" ] ; then + if [ -n $opt_full_dir ] ; then + DIR=$opt_full_dir + echo opt_full: DIR=$DIR >& 2 + fi fi + # get filename from first argument if [[ $# == 1 && -f $DIR/$1 ]] ; then FILE=$1 @@ -229,7 +240,7 @@ fi # run appropriate subcommand -if [ $opt_full == "true" ] ; then +if [ "$opt_full" == "true" ] ; then tc_fullinfo $TC_FILES elif [ -n "$opt_anum" ] ; then tc_anum $TC_FILES