From 63cf1af3e69ae1f328ee61caec553a629481ceb4 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 15 May 2014 18:03:44 -0400 Subject: tests/common.sh: Remove _ob_local and _ob_return. --- (limited to 'tests') diff --git a/tests/common.sh b/tests/common.sh index b5c7f71..2075558 100644 --- a/tests/common.sh +++ b/tests/common.sh @@ -25,25 +25,22 @@ BUILDDIR="${PWD}/.." ob_use() { - _ob_local _obu_module + local module= if [ "${#}" -eq 1 ]; then - _obu_module="${1}" + module="${1}" else - _ob_return 125 - return ${?} + return 125 fi - _obu_module="${BUILDDIR}/lib/${_obu_module}.sm" - if [ -r "${_obu_module}" ]; then - . "${_obu_module}" + module="${BUILDDIR}/lib/${module}.sm" + if [ -r "${module}" ]; then + . "${module}" else - _ob_return 1 - return ${?} + return 1 fi - _ob_return 0 - return ${?} + return 0 } test_assert() -- cgit v0.9.1