diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/setup.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/setup.sh b/tests/setup.sh index 3fda829..50209ae 100644 --- a/tests/setup.sh +++ b/tests/setup.sh @@ -24,6 +24,14 @@ setup_script_dir="$(dirname ${BASH_SOURCE[0]})" export TOPDIR=$(pwd) export TEST_DATA="$TOPDIR"/data +pushd() { + command pushd "$@" 1>/dev/null +} + +popd() { + command popd 1>/dev/null +} + WS_DEFAULT="workspaces/rt_workspace_" setup_workspace() { if [ -z "$1" ]; then |