summaryrefslogtreecommitdiff
path: root/cpp/test/bin/env
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/bin/env')
-rwxr-xr-xcpp/test/bin/env23
1 files changed, 0 insertions, 23 deletions
diff --git a/cpp/test/bin/env b/cpp/test/bin/env
deleted file mode 100755
index 76797b1ef7..0000000000
--- a/cpp/test/bin/env
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-# Set environment variables for test scripts.
-
-pathmunge () {
- if ! echo $PATH | /bin/egrep -q "(^|:)$1($|:)" ; then
- if [ "$2" = "after" ] ; then
- PATH=$PATH:$1
- else
- PATH=$1:$PATH
- fi
- fi
-}
-
-if [ -z QPID_ROOT ] ; then echo "You must set QPID_ROOT" ; fi
-
-pathmunge $QPID_ROOT/cpp/test/bin
-pathmunge $QPID_ROOT/cpp/build/*/bin
-pathmunge $QPID_ROOT/cpp/build/*/test
-
-export QPID_HOME=${QPID_HOME:-$QPID_ROOT/java/build}
-pathmunge $QPID_HOME/bin
-
-