Merge branch 'refactor-run-program' of gitlab.com:embeddable-common-lisp/ecl into refactor-run-program

This commit is contained in:
Daniel Kochmański 2017-03-22 10:25:47 +01:00
commit f72943f4d1

View file

@ -148,4 +148,9 @@
(sleep 1)
(ext:terminate-process process)
(sleep 1))
(is (= x 3) "X is ~s, should be 3." x))))
#-cygwin
(is (= x 3) "X is ~s, should be 3." x)
;; XXX: cygwin quirk: sigchld isn't called for suspend/resume on
;; cygwin (but they work - process is suspended/resumed)
#+cygwin
(is (= x 1) "X is ~s, should be 1." x))))