X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fthreads.impure.lisp;h=2d72ec1f895e4bbbdb9c8dbc630f2ed28fb4897e;hb=c70733ce291ef0f5b0f2dc19f085dfdeb1896b81;hp=5d1a380bd48efc7594a7c922ba0dabdfcfa0c2a0;hpb=54e97796e29cb89892dd30c8cb8c5e9d0a870f94;p=sbcl.git diff --git a/tests/threads.impure.lisp b/tests/threads.impure.lisp index 5d1a380..2d72ec1 100644 --- a/tests/threads.impure.lisp +++ b/tests/threads.impure.lisp @@ -496,7 +496,7 @@ (defun send-gc () (loop until (< *n-gcs-done* *n-gcs-requested*)) - (format t "G" *n-gcs-requested* *n-gcs-done*) + (format t "G") (force-output) (sb-ext:gc) (incf *n-gcs-done*)) @@ -526,6 +526,7 @@ (push (sb-thread:make-thread #'exercise-binding) threads) (push (sb-thread:make-thread (lambda () (loop + (sleep 0.1) (send-gc)))) threads) (sleep 4))