aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit/dom/AllVHDLSources.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/pyunit/dom/AllVHDLSources.sh')
-rwxr-xr-xtestsuite/pyunit/dom/AllVHDLSources.sh31
1 files changed, 0 insertions, 31 deletions
diff --git a/testsuite/pyunit/dom/AllVHDLSources.sh b/testsuite/pyunit/dom/AllVHDLSources.sh
deleted file mode 100755
index 251b34163..000000000
--- a/testsuite/pyunit/dom/AllVHDLSources.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env bash
-
-cd $(dirname "$0")/../../..
-
-gstart () {
- printf "\e[36m> $@\e[0m\n"
-}
-gend () {
- printf "$@\n"
-}
-
-if [ -n "$CI" ]; then
- gstart () {
- printf '::group::'
- printf "$@\n"
- SECONDS=0
- }
-
- gend () {
- duration=$SECONDS
- echo '::endgroup::'
- printf "$@\n"
- }
-fi
-
-for item in $(find ./ -type f -name "*.vhdl"); do
- gstart "$item"
- ./pyGHDL/cli/DOM.py $item \
- && gend '\e[32mpass\e[0m' \
- || gend '\e[31mfail\e[0m'
-done