Mark H Weaver <m...@netris.org> writes:

> l...@gnu.org (Ludovic Courtès) writes:
>
>> Ricardo Wurmus <ricardo.wur...@mdc-berlin.de> skribis:
>>
>>> Can we disable the test suite for certain architectures?  Or would they
>>> have to be disabled completely?
>>
>> Yes, just pass something like in ‘arguments’:
>>
>>   #:tests? (not (string=? (or (%current-system) (%current-target-system))
>>                           "i686-linux"))
>
> Since it fails the same way on mips64el, I suggest this instead:
>
>    #:tests? (string=? (or (%current-system) (%current-target-system))
>                           "x86_64-linux")

Oops, we forgot to mention that there should be a comma before that
first open paren, like this:

    #:tests? ,(string=? (or (%current-system) (%current-target-system))
                            "x86_64-linux")

>> Also please add a comment above linking to the upstream bug report.
>
>      Thanks!
>        Mark

Reply via email to