aboutsummaryrefslogtreecommitdiff
path: root/test/shunit2-2.0.3/lib
diff options
context:
space:
mode:
authorPjotr Prins2017-08-20 09:22:43 +0000
committerPjotr Prins2017-08-20 09:22:43 +0000
commit2e76646998df0ca1b7d160329c0f3ac8cdda2fe0 (patch)
tree8a1ba0770e2344469c58290d4192db186d9439cb /test/shunit2-2.0.3/lib
parent7fc4e3c0a0d6e32ca6685647e107473f1d96c3e5 (diff)
downloadpangemma-2e76646998df0ca1b7d160329c0f3ac8cdda2fe0.tar.gz
Move shunit2 into ./contrib and add catch-1.8.7
Diffstat (limited to 'test/shunit2-2.0.3/lib')
-rw-r--r--test/shunit2-2.0.3/lib/sh/shlib23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/shunit2-2.0.3/lib/sh/shlib b/test/shunit2-2.0.3/lib/sh/shlib
deleted file mode 100644
index 00aadcb..0000000
--- a/test/shunit2-2.0.3/lib/sh/shlib
+++ /dev/null
@@ -1,23 +0,0 @@
-# $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
-}