~ruther/guix-local

436c95d9a73064d7884530928a6ebb331377a9e3 — Mark H Weaver 12 years ago 72f210e
gnu: dmd: Sleep longer in tests, for slower machines.

* gnu/packages/patches/dmd-tests-longer-sleeps.patch: New file.
* gnu/packages/admin.scm (dmd): Add the patch.
* gnu-system.am (dist_patch_DATA): Add it.
3 files changed, 55 insertions(+), 1 deletions(-)

M gnu-system.am
M gnu/packages/admin.scm
A gnu/packages/patches/dmd-tests-longer-sleeps.patch
M gnu-system.am => gnu-system.am +1 -0
@@ 247,6 247,7 @@ dist_patch_DATA =						\
  gnu/packages/patches/dbus-localstatedir.patch			\
  gnu/packages/patches/diffutils-gets-undeclared.patch		\
  gnu/packages/patches/dmd-getpw.patch				\
  gnu/packages/patches/dmd-tests-longer-sleeps.patch		\
  gnu/packages/patches/emacs-configure-sh.patch			\
  gnu/packages/patches/findutils-absolute-paths.patch		\
  gnu/packages/patches/flac-fix-memcmp-not-declared.patch	\

M gnu/packages/admin.scm => gnu/packages/admin.scm +2 -1
@@ 49,7 49,8 @@
             (sha256
              (base32
               "07mddw0p62fcphwjzgb6rfa0pjz5sy6jzbha0sm2vc3rqf459jxg"))
             (patches (list (search-patch "dmd-getpw.patch")))))
             (patches (list (search-patch "dmd-getpw.patch")
                            (search-patch "dmd-tests-longer-sleeps.patch")))))
    (build-system gnu-build-system)
    (arguments
     '(#:configure-flags '("--localstatedir=/var")))

A gnu/packages/patches/dmd-tests-longer-sleeps.patch => gnu/packages/patches/dmd-tests-longer-sleeps.patch +52 -0
@@ 0,0 1,52 @@
Increase sleep times in tests, for slower machines.

Patch by Mark H Weaver <mhw@netris.org>.

--- dmd/tests/basic.sh	2013-11-30 17:22:00.000000000 -0500
+++ dmd/tests/basic.sh	2014-02-16 02:18:34.036376953 -0500
@@ -46,7 +46,7 @@
 dmd -I -s "$socket" -c "$conf" -l "$log" &
 dmd_pid=$!
 
-sleep 1				# XXX: wait till it's up
+sleep 3				# XXX: wait till it's up
 kill -0 $dmd_pid
 test -S "$socket"
 $deco status dmd | grep -E '(Start.*dmd|Stop.*test)'
--- dmd/tests/respawn.sh	2013-12-01 16:50:37.000000000 -0500
+++ dmd/tests/respawn.sh	2014-02-16 02:19:16.958251953 -0500
@@ -39,7 +39,7 @@
     i=0
     while ! test -f "$1" && test $i -lt 20
     do
-	sleep 0.3
+	sleep 1
 	i=`expr $i + 1`
     done
     test -f "$1"
@@ -65,14 +65,14 @@
    #:provides '(test1)
    #:start (make-forkexec-constructor
 	    "$SHELL" "-c"
-	    "echo \$\$ > $service1_pid ; while true ; do sleep 1 ; done")
+	    "echo \$\$ > $service1_pid ; while true ; do sleep 3 ; done")
    #:stop  (make-kill-destructor)
    #:respawn? #t)
  (make <service>
    #:provides '(test2)
    #:start (make-forkexec-constructor
 	    "$SHELL" "-c"
-	    "echo \$\$ > $service2_pid ; while true ; do sleep 1 ; done")
+	    "echo \$\$ > $service2_pid ; while true ; do sleep 3 ; done")
    #:stop  (make-kill-destructor)
    #:respawn? #t))
 (start 'test1)
@@ -82,7 +82,7 @@
 dmd -I -s "$socket" -c "$conf" -l "$log" &
 dmd_pid=$!
 
-sleep 1				# XXX: wait till it's up
+sleep 3				# XXX: wait till it's up
 kill -0 $dmd_pid
 test -S "$socket"
 $deco status test1 | grep started