mirror of
https://github.com/chipsalliance/f4pga-examples.git
synced 2025-01-03 03:43:38 -05:00
dab8d997be
Signed-off-by: Robert Winkler <rwinkler@antmicro.com>
13 lines
653 B
Bash
13 lines
653 B
Bash
#!/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 "$@"
|
|
}
|