gnustest-nntp: Do not use `sleep-for' to wait for ping
[gnus] / lisp / tests / gnustest-nntp.el
index 0381e10..0d5cccb 100644 (file)
@@ -1,5 +1,5 @@
 ;;; gnustest-nntp.el --- Simple NNTP testing for Gnus
-;; Copyright (C) 2011-2013 Free Software Foundation, Inc.
+;; Copyright (C) 2011-2015 Free Software Foundation, Inc.
 
 ;; Author: David Engster <dengste@eml.cc>
 
@@ -42,7 +42,8 @@
   (let* ((ping-program-options '("-c" "1"))
         (buf (ping host))
         proc)
-    (sleep-for 0.5)
+    ;; sleep-for does not work correctly with async processes running
+    (call-process "sleep" nil nil nil "2")
     (with-current-buffer buf
       (accept-process-output (get-buffer-process (current-buffer)) 2)
       (goto-char (point-min))