diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2017-11-21 03:45:09 -0500 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2017-11-21 23:16:50 +0000 |
commit | 4878cbe276ec1131d0cf30ac5df18aa9ba699bc4 (patch) | |
tree | c0c6e746c75aac7e335d6caf96c4e68264b5eaec /test/scripts | |
parent | 6a9b68b268f9dc87a221fac0ec9b0b67c16106ca (diff) |
VCL: close-on-empty state transition refactoring.
- Refactor session disconnect/close state
transitions. Only remove session state
when app calls close(). Add HUP/reset
feedback by returning ECONNRESET.
- Update debug messages.
- Use VCL_LOCK_AND_GET_SESSION macro more
extensively
Change-Id: I23d372834b901a6726e6d6c1061df73ad967882f
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'test/scripts')
-rwxr-xr-x | test/scripts/socket_test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scripts/socket_test.sh b/test/scripts/socket_test.sh index 110ae32d9d3..0b1f928ed10 100755 --- a/test/scripts/socket_test.sh +++ b/test/scripts/socket_test.sh @@ -485,7 +485,7 @@ set_pre_cmd() { pre_cmd="$gdb_in_emacs " elif [ $gdb -eq 1 ] ; then write_gdb_cmdfile $tmp_gdb_cmdfile $gdb_cmdfile $emacs $3 - pre_cmd="gdb -x $tmp_gdb_cmdfile -i=mi --args " + pre_cmd="gdb -x $tmp_gdb_cmdfile --args " elif [ -z $3 ] ; then unset -v pre_cmd else |