diff options
Diffstat (limited to 'test/scripts')
-rwxr-xr-x | test/scripts/socket_test.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/scripts/socket_test.sh b/test/scripts/socket_test.sh index 862c949b6e8..609fc62ab2a 100755 --- a/test/scripts/socket_test.sh +++ b/test/scripts/socket_test.sh @@ -523,6 +523,15 @@ write_script_header() { if [ -n "$VCL_DEBUG" ] ; then echo "export VCL_DEBUG=$VCL_DEBUG" >> $1 fi + if [ -n "$VCOM_DEBUG" ] ; then + echo "export VCOM_DEBUG=$VCOM_DEBUG" >> $1 + fi + if [ -n "$VCOM_APP_NAME" ] ; then + echo "export VCOM_APP_NAME=$VCOM_APP_NAME" >> $1 + fi + if [ -n "$VCOM_SID_BIT" ] ; then + echo "export VCOM_SID_BIT=$VCOM_SID_BIT" >> $1 + fi if [ -n "$namespace_id" ] ; then echo "export VCL_APP_NAMESPACE_ID=\"$namespace_id\"" >> $1 echo "export VCL_APP_NAMESPACE_SECRET=\"$namespace_secret\"" >> $1 |