From 42dc643e44563f64d3b7593c051898b7879d9878 Mon Sep 17 00:00:00 2001 From: Peter Carbonetto Date: Tue, 18 Jul 2017 13:56:10 -0500 Subject: Moved shunit2 files to test directory. --- test/shunit2-2.0.3/lib/sh/shlib | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test/shunit2-2.0.3/lib/sh/shlib (limited to 'test/shunit2-2.0.3/lib/sh') diff --git a/test/shunit2-2.0.3/lib/sh/shlib b/test/shunit2-2.0.3/lib/sh/shlib new file mode 100644 index 0000000..00aadcb --- /dev/null +++ b/test/shunit2-2.0.3/lib/sh/shlib @@ -0,0 +1,23 @@ +# $Id$ +# vim:syntax=sh +# +# library of shell functions +# + +shlib_relToAbsPath() +{ + _shlib_path=$1 + + # deal with paths that start with / + echo "${_shlib_path}" |grep '^/' >/dev/null 2>&1 + if [ $? -ne 0 ]; then + _shlib_pwd=`pwd` + _shlib_path="${_shlib_pwd}/${_shlib_path}" + unset _shlib_pwd + fi + + # clean up the path + echo "${_shlib_path}" |sed 's/[^/]*\/*\.\.\/*//g;s/\/\.\//\//' + + unset _shlib_path +} -- cgit v1.2.3