emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#37037: closed (Guile 2.0.13+1-5.1 FTBFS on GNU/Hur


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#37037: closed (Guile 2.0.13+1-5.1 FTBFS on GNU/Hurd due to one failing test.)
Date: Fri, 23 Aug 2019 19:25:02 +0000

Your message dated Fri, 23 Aug 2019 15:23:21 -0400
with message-id <address@hidden>
and subject line Re: bug#37037: Guile 2.0.13+1-5.1 FTBFS on GNU/Hurd due to one 
failing test.
has caused the debbugs.gnu.org bug report #37037,
regarding Guile 2.0.13+1-5.1 FTBFS on GNU/Hurd due to one failing test.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
37037: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=37037
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: Guile 2.0.13+1-5.1 FTBFS on GNU/Hurd due to one failing test. Date: Thu, 15 Aug 2019 14:29:07 +0200 User-agent: Evolution 3.30.5-1
Hello,

When building Debian version 2.0.13+1-5.1 one test fails making the
whole build to fail. The problem is in the file test-
suite/tests/statprof.test. According to that file it is known that
ITIMER_PROF is not implemented:

;; Throw `unresolved' upon ENOSYS.  This is used to skip tests on
;; platforms such as GNU/Hurd where `ITIMER_PROF' is is currently
;; unimplemented.
      
(define-syntax-rule (when-implemented body ...)
  (catch 'system-error
    (lambda ()
      body ...)
    (lambda args
      (let ((errno (system-error-errno args)))
        (false-if-exception (statprof-stop))
        (if (= errno ENOSYS)
            (throw 'unresolved)
            (apply throw args))))))

(pass-if-equal "return values"
    '(42 77)
  (call-with-values
      (lambda ()
        (with-output-to-port (%make-void-port "w")
          (lambda ()
            (with-statprof
                (let loop ((i 10000))
                  (if (zero? i)
                      (values 42 77)
                      (loop (1- i))))))))
    list))

However, when that test is run the following is reported:

Running statprof.test
ERROR: statprof.test: return values - arguments: ((system-error
"setitimer" "~A" ("Function not implemented") (1073741902)))
ERROR: statprof.test: statistical sample counts within expected range -
arguments: ((misc-error #f "~A" ("Can't reset profiler while profiler
is running.") #f))
ERROR: statprof.test: accurate call counting - arguments: ((misc-error
#f "~A" ("Can't reset profiler while profiler is running.") #f))

making that test (and package build) to fail.

An UNRESOLVED result would make that test to enable a successful
package build. Unfortunately I don't know anything about scheme code so
I cannot propose a patch to the Debian package maintainer. Maybe you
can help me?

Please Cc: since I'm not subscribed.

Thanks!





--- End Message ---
--- Begin Message --- Subject: Re: bug#37037: Guile 2.0.13+1-5.1 FTBFS on GNU/Hurd due to one failing test. Date: Fri, 23 Aug 2019 15:23:21 -0400 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux)
Svante Signell <address@hidden> writes:

> On Thu, 2019-08-22 at 17:01 -0400, Mark H Weaver wrote:
>> It looks like this issue was already fixed in Guile 2.0.14, by commit
>> f2764cb1031379c47a17c02fef3f8164a6ce9cda on the 'stable-2.0' branch:
>>   
>> https://git.savannah.gnu.org/cgit/guile.git/commit/?h=stable-2.0&id=f2764cb1031379c47a17c02fef3f8164a6ce9cda
>> 
>> Would you like to try it and report back?
>
> Thank you, that commit fixed the problem. Reported to Debian version
> 2.0.13+1-5.1 as bug #935505, see 
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=935505

Great, thanks for letting us know.  I'm closing this bug now.

     Regards,
       Mark


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]