aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorumarcor <unai.martinezcorral@ehu.eus>2020-12-29 03:06:42 +0100
committerumarcor <unai.martinezcorral@ehu.eus>2020-12-29 03:06:42 +0100
commitdbc0651008b4becac90450038c0f31d590bddbfc (patch)
tree7547a87b8e6a2624e4bb11a722977d587303941c /testsuite
parentc84df63c85a0a2bc81430b2ea3c3aca165532680 (diff)
downloadghdl-dbc0651008b4becac90450038c0f31d590bddbfc.tar.gz
ghdl-dbc0651008b4becac90450038c0f31d590bddbfc.tar.bz2
ghdl-dbc0651008b4becac90450038c0f31d590bddbfc.zip
testsuite: rm pyunit/testsuite.sh
Diffstat (limited to 'testsuite')
-rwxr-xr-xtestsuite/pyunit/testsuite.sh59
-rwxr-xr-xtestsuite/testsuite.sh15
2 files changed, 2 insertions, 72 deletions
diff --git a/testsuite/pyunit/testsuite.sh b/testsuite/pyunit/testsuite.sh
deleted file mode 100755
index 6a36bb0a6..000000000
--- a/testsuite/pyunit/testsuite.sh
+++ /dev/null
@@ -1,59 +0,0 @@
-#! /bin/sh
-
-# Driver for a testsuite.
-
-set -e
-
-# This is the only place where test dirs are specified. Do not duplicate this
-# line
-#dirs="*[0-9]"
-#
-#failures=""
-#full=n
-#
-#for opt; do
-# case "$opt" in
-# -k | --keep-going) full=y ;;
-# --dir=*) dirs=`echo $opt | sed -e 's/--dir=//'` ;;
-# --skip=*) d=`echo $opt | sed -e 's/--skip=//'`
-# dirs=`echo "" $dirs | sed -e "s/ $d//"` ;;
-# --start-at=*) d=`echo $opt | sed -e 's/--start-at=//'`
-# dirs=`echo "" $dirs | sed -e "s/^.* $d//"`
-# dirs="$d $dirs" ;;
-# --list-tests) echo $dirs; exit 0;;
-# *) echo "Unknown option $opt"
-# exit 2
-# ;;
-# esac
-#done
-#
-#singlerun() {
-# echo ""
-# echo "dir $1:"
-# cd $1
-# if ! ./testsuite.sh; then
-# echo "#################################################################"
-# echo "######### FAILURE: $1"
-# echo "#################################################################"
-# if [ $2 = "y" ]; then
-# failures="$failures $1"
-# else
-# exit 1;
-# fi
-# fi
-# cd ..
-#}
-#
-#for i in $dirs; do singlerun $i $full; done
-#
-#if [ x"$failures" = x"" ]; then
-# echo "tests are successful" && exit 0
-#else
-# echo "test failed ($failures)" && exit 1
-#fi
-
-cd $(dirname "$0")/../..
-
-export PYTHONPATH=$(pwd)
-
-python3 -m unittest testsuite.pyunit
diff --git a/testsuite/testsuite.sh b/testsuite/testsuite.sh
index b46ffcdc4..c11b90993 100755
--- a/testsuite/testsuite.sh
+++ b/testsuite/testsuite.sh
@@ -141,22 +141,11 @@ do_gna () {
# The Python Unit testsuite: regression testsuite for Python bindings to libghdl
do_pyunit () {
gstart "[GHDL - test] pyunit"
- cd pyunit
- ./testsuite.sh
+ cd $(dirname "$0")/..
+ PYTHONPATH=$(pwd) python3 -m unittest testsuite.pyunit
-# if ./testsuite.sh > test.log 2>&1 ; then
-# printf "pyunit: ${ANSI_GREEN}ok${ANSI_NOCOLOR}\n"
-# # Don't disp log
-# else
-# printf "pyunit: ${ANSI_RED}failed${ANSI_NOCOLOR}\n"
-# cat test.log
-# failures="$failures"
-# fi
-
- cd ..
gend
- [ "$failures" = "" ] || exit 1
}
# The VESTS testsuite: compliance testsuite, from: https://github.com/nickg/vests.git 388250486a