Re: [PATCH 05/15] build: syscalls: Add clone syscall wrapper.

2015-07-11 Thread Ludovic Courtès
There’s something fishy when running the tests. If you comment out the “setns” and “pivot-root” tests, you’ll see that syscalls.log reads this: --8<---cut here---start->8--- Starting test syscalls Group begin: syscalls Test begin: test-name: "mount, ENOE

Re: [PATCH 05/15] build: syscalls: Add clone syscall wrapper.

2015-07-07 Thread Thompson, David
On Tue, Jul 7, 2015 at 9:23 AM, Ludovic Courtès wrote: > David Thompson skribis: > >> From: David Thompson >> >> * guix/build/syscalls.scm (clone): New procedure. >> (CLONE_NEWNS, CLONE_NEWUTS, CLONE_NEWIPC, CLONE_NEWUSER, CLONE_NEWPID, >> CLONE_NEWNET): New variables. >> * tests/syscalls.sc

Re: [PATCH 05/15] build: syscalls: Add clone syscall wrapper.

2015-07-07 Thread Ludovic Courtès
David Thompson skribis: > From: David Thompson > > * guix/build/syscalls.scm (clone): New procedure. > (CLONE_NEWNS, CLONE_NEWUTS, CLONE_NEWIPC, CLONE_NEWUSER, CLONE_NEWPID, > CLONE_NEWNET): New variables. > * tests/syscalls.scm: Test it. [...] > +;; The libc interface to sys_clone is not

[PATCH 05/15] build: syscalls: Add clone syscall wrapper.

2015-07-06 Thread David Thompson
From: David Thompson * guix/build/syscalls.scm (clone): New procedure. (CLONE_NEWNS, CLONE_NEWUTS, CLONE_NEWIPC, CLONE_NEWUSER, CLONE_NEWPID, CLONE_NEWNET): New variables. * tests/syscalls.scm: Test it. --- guix/build/syscalls.scm | 31 +++ tests/syscalls.scm