Fix make-array transforms.
[sbcl.git] / tests / condition-wait-sigcont.lisp
index 35adec7..c4c4312 100644 (file)
   (write-line "/waiting")
   (force-output)
   (delete-file "condition-wait-sigcont.tmp")
+  #+sb-thread
   (condition-wait *queue* *lock*)
+  #-sb-thread
+  (loop (sleep 10))
   (write-line "/woken")
   (force-output)
   (with-open-file (f "condition-wait-sigcont.tmp" :direction :output)
@@ -32,4 +35,4 @@
 
 ;; sleep a bit so our runner can kill us
 (sleep 10)
-(quit)
+(exit)