ci: Add tuttest_exec helper

Signed-off-by: Robert Winkler <rwinkler@antmicro.com>
This commit is contained in:
Robert Winkler 2020-11-26 13:45:02 +01:00
parent 60c1ff1596
commit dab8d997be
1 changed files with 13 additions and 0 deletions

13
.github/scripts/tuttest_exec.sh vendored Normal file
View File

@ -0,0 +1,13 @@
#!/bin/bash
function tuttest_exec () {
echo " ==================================================================== " 1>&2
echo " CMD : tuttest $@ " 1>&2
echo " OUTPUT: " 1>&2
echo "" 1>&2
echo "$(tuttest $@)" 1>&2
echo " -------------------------------------------------------------------- " 1>&2
echo "" 1>&2
tuttest "$@"
}