bug#72547: [PATCH 3/9] tests: Skip hole-related port tests on Darwin.

Ludovic Courtès <[email protected]> Sun, 20 Oct 2024 21:18:49 +0200
Newsgroups gmane.lisp.guile.bugs
Message-ID <[email protected]>
Tomas Volf <[email protected]> skribis:

> +(define (skip-on-darwin)
> +  (when (string-ci=? "darwin" (vector-ref (uname) 0))
> +    (throw 'untested)))

I changed (vector-ref (uname) 0) to (utsname:sysname (uname)) in this
and other patches.

(We might want to factorize this procedure.  :-))

Ludo’.