10 lines
188 B
Bash
10 lines
188 B
Bash
|
source "$rootdir/test/common/autotest_common.sh"
|
||
|
|
||
|
setup() {
|
||
|
if [[ $1 == output ]]; then
|
||
|
"$rootdir/scripts/setup.sh" "${@:2}"
|
||
|
else
|
||
|
"$rootdir/scripts/setup.sh" "$@" &> /dev/null
|
||
|
fi
|
||
|
}
|