aboutsummaryrefslogtreecommitdiff
path: root/test/shunit2-2.0.3/lib/sh
diff options
context:
space:
mode:
authorPeter Carbonetto2017-07-18 13:56:10 -0500
committerPeter Carbonetto2017-07-18 13:56:10 -0500
commit42dc643e44563f64d3b7593c051898b7879d9878 (patch)
tree33fcd6aa1066016aea9b54e97a84f4250562c007 /test/shunit2-2.0.3/lib/sh
parent8de8f701755b3dc4c042591541aa86bfda02f36b (diff)
downloadpangemma-42dc643e44563f64d3b7593c051898b7879d9878.tar.gz
Moved shunit2 files to test directory.
Diffstat (limited to 'test/shunit2-2.0.3/lib/sh')
-rw-r--r--test/shunit2-2.0.3/lib/sh/shlib23
1 files changed, 23 insertions, 0 deletions
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
+}