diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2017-11-09 13:00:34 -0500 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2017-11-09 22:16:52 +0000 |
commit | 498b3a56c9b61582b237614193920be610eaca58 (patch) | |
tree | aa6c5ab5dad663ae2af1732eb9e6b1850b2d1486 /test/scripts | |
parent | ef24d42e717ebee44008bc83229e1cb3e7eeb5ae (diff) |
VCL: Set debug output level from env var
Change-Id: Ia99047715ed652eca1aea1e4144e407f9608d59e
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'test/scripts')
-rwxr-xr-x | test/scripts/socket_test.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/test/scripts/socket_test.sh b/test/scripts/socket_test.sh index f269efcad81..110ae32d9d3 100755 --- a/test/scripts/socket_test.sh +++ b/test/scripts/socket_test.sh @@ -343,7 +343,7 @@ fi if [ -z "$api_segment" ] ; then api_segment=" api-segment { gid $user_gid }" fi -vpp_args="unix { interactive exec $tmp_vpp_exec_file}${api_segment}" +vpp_args="unix { interactive full-coredump coredump-size unlimited exec $tmp_vpp_exec_file}${api_segment}" if [ $iperf3 -eq 1 ] ; then app_dir="$(dirname $(which iperf3))/" @@ -509,7 +509,12 @@ write_script_header() { echo "trap \"rm -f $1 $2 $tmp_vpp_exec_file\" $trap_signals" >> $1 fi fi - echo "export VCL_CONFIG=${vcl_config_dir}${vcl_config}" >> $1 + if [ -n "$VCL_CONFIG" ] ; then + echo "export VCL_CONFIG=${vcl_config_dir}${vcl_config}" >> $1 + fi + if [ -n "$VCL_DEBUG" ] ; then + echo "export VCL_DEBUG=$VCL_DEBUG" >> $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 |