Revision 77268a80127c2bbf61ec7e586d1e82e175cf773e authored by Hélio Guilherme on 11 August 2021, 01:25:24 UTC, committed by GitHub on 11 August 2021, 01:25:24 UTC
1 parent 0a1cff1
Raw File
test_all.sh
#!/usr/bin/sh

export PYTHONPATH=/home/helio/github/RIDE/utest/:$PYTHONPATH
export PYTHONPATH=/home/helio/github/RIDE/src/:$PYTHONPATH

export PYTHONROOT=/usr/bin

if [ $# -ge 1 ]
then
      PY=3.9
      DIR="$1"
else
    PY=3
    DIR="utest"
fi

shift
if [ $# -eq 1 ]
then
    DIR="$1"
fi

cd /home/helio/github/RIDE/
for i in `ls -1R $DIR | grep ":"`
do
        a=`echo $i |sed s/://g`
        for j in `ls -1 $a/test_*py 2>/dev/null`
        do
		# printf "$j\n"
                # bypass file that is passing with invoke test
                if [ "$j" = "$a/test_DEBUG_resourcefactory.py" ]
                then
                        b=`true`
                else 
                        b=`$PYTHONROOT/python$PY $j`
                fi
                if [ $? -eq 1 ]
		then
                        printf "$b\n"
			printf "MUST FIX: $j\n"
			exit
		fi
        done
done
back to top