Source: libsdl-perl Version: 2.542-1 Severity: important Tags: patch User: debian-h...@lists.debian.org Usertags: hurd
Hi, Currently libsdl-perl FTBFS on GNU/Hurd due to one failing test: t/core_cd.t This test already has a check for GNU/Hurd version <=0.3. Test summary: Failed 1/59 test programs. 1/3827 subtests failed. Since the situation has not changed, and Hurd version is now 0.5, simply update the version test as in the attached patch. Skipping this test makes the package build again. The latest building version was: 2.542-1+b3 (probably without tests enabled?) Thanks!
--- a/t/core_cd.t 2014-04-23 00:03:37.000000000 +0200 +++ b/t/core_cd.t 2014-11-01 16:31:24.000000000 +0100 @@ -8,8 +8,8 @@ use SDL::TestTool; use Config; - plan( skip_all => 'GNU Hurd <= 0.3 not supported' ) - if $^O eq 'gnu' && $Config{osvers} <= 0.3; + plan( skip_all => 'GNU Hurd <= 0.5 not supported' ) + if $^O eq 'gnu' && $Config{osvers} <= 0.5; plan( skip_all => 'Failed to init cdrom' ) unless SDL::TestTool->init(SDL_INIT_CDROM);