guix-devel
[Top][All Lists]
Advanced

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

Re: [PATCH] gnu: Add ninja.


From: 宋文武
Subject: Re: [PATCH] gnu: Add ninja.
Date: Sat, 10 Jan 2015 19:07:29 +0800
User-agent: Notmuch/0.18.1 (http://notmuchmail.org) Emacs/24.4.1 (x86_64-unknown-linux-gnu)

Ludovic Courtès <address@hidden> writes:

> 宋文武 <address@hidden> skribis:
>
>> * gnu/packages/ninja.scm: New file.
>> * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
>
> [...]
>
>> +          'check
>> +          (lambda _
>> +            (and (zero? (system "./configure.py"))
>> +                 (zero? (system "./ninja ninja_test"))
>> +                 ;; SubprocessTest.InterruptChild fail when using 'system*'.
>> +                 ;; SubprocessTest.SetWithLots was skipped.
>> +                 ;; XXX: Raise [ulimit -n] well above 1025 to make this 
>> test go.
>
> Does it mean that the test is currently failing?
Yes, SetWithLots fail with the 'Raise ...' line.
>
>> +                 (zero? (system (string-append
>> +                                 "./ninja_test "
>> +                                 "--gtest_filter="
>> +                                 "-SubprocessTest.SetWithLots")))))
>
> Please use ‘system*’ (with separate arguments) rather than ‘system’.
> The latter runs “/bin/sh -c ...” whereas the former runs the program
> directly.
Use 'system*' to run "./ninja_test" will cause InterruptChild to fail :(
(as I mentioned in the comment)
>
> Thanks,
> Ludo’.



reply via email to

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