diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2020-12-29 00:27:07 +0100 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2020-12-29 00:27:43 +0100 |
commit | d855ec403d4e6cb7d88d58c9a54f7a157a7d02fe (patch) | |
tree | 306bc04b903663b96dd2a8b861105d385097d347 | |
parent | e644242c534e76bcd066edcb48880f85b6c49f53 (diff) | |
download | ghdl-d855ec403d4e6cb7d88d58c9a54f7a157a7d02fe.tar.gz ghdl-d855ec403d4e6cb7d88d58c9a54f7a157a7d02fe.tar.bz2 ghdl-d855ec403d4e6cb7d88d58c9a54f7a157a7d02fe.zip |
testuite: run pyunit from the root of the repo
-rwxr-xr-x | testsuite/pyunit/testsuite.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/pyunit/testsuite.sh b/testsuite/pyunit/testsuite.sh index 7eac028ca..6f363bc9b 100755 --- a/testsuite/pyunit/testsuite.sh +++ b/testsuite/pyunit/testsuite.sh @@ -52,6 +52,6 @@ set -e # echo "test failed ($failures)" && exit 1 #fi -cd $(dirname "$0")/.. +cd $(dirname "$0")/../.. -python3 -m unittest pyunit +python3 -m unittest testsuite.pyunit |