diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2020-12-29 03:24:28 +0100 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2020-12-29 03:24:28 +0100 |
commit | 8977b7432b4cd362795f8dd89a59bc7328d01212 (patch) | |
tree | 7ac02000a5adbe2996d80eb776eeaa1f57316c9a /testsuite/pyunit | |
parent | edaecdb68ca5e0c6e59561b5e93cb3c6d2cb7410 (diff) | |
parent | dbc0651008b4becac90450038c0f31d590bddbfc (diff) | |
download | ghdl-8977b7432b4cd362795f8dd89a59bc7328d01212.tar.gz ghdl-8977b7432b4cd362795f8dd89a59bc7328d01212.tar.bz2 ghdl-8977b7432b4cd362795f8dd89a59bc7328d01212.zip |
Merge remote-tracking branch 'github-umarcor/py/GHDL' into paebbels/pyGHDL
Diffstat (limited to 'testsuite/pyunit')
-rwxr-xr-x | testsuite/pyunit/testsuite.sh | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/testsuite/pyunit/testsuite.sh b/testsuite/pyunit/testsuite.sh deleted file mode 100755 index 3de4b3951..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)/pyGHDL - -python3 -m unittest testsuite.pyunit |