branch: externals/websocket commit 4f8ddb64bc2bb515cd0ab5d4c628dc11062a1a98 Merge: fca0561430 8299e57a4c Author: Andrew Hyatt <ahy...@gmail.com> Commit: Andrew Hyatt <ahy...@gmail.com>
Merge pull request #43 from chwarr/func-test-windows-sigstp Function test improvements for Windows: SIGSTP --- websocket-functional-test.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/websocket-functional-test.el b/websocket-functional-test.el index 6a9481fc23..65d560b0fd 100644 --- a/websocket-functional-test.el +++ b/websocket-functional-test.el @@ -79,7 +79,10 @@ (websocket-close wstest-ws) (assert (null (websocket-openp wstest-ws))) -(stop-process wstest-server-proc) +(if (not (eq system-type 'windows-nt)) + ; Windows doesn't have support for the SIGSTP signal, so we'll just kill + ; the process. + (stop-process wstest-server-proc)) (kill-process wstest-server-proc) ;; Make sure the processes are closed. This happens asynchronously,