all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#27431] Acl test investigation
@ 2017-06-20 16:37 Kei Kebreau
  2017-06-20 19:45 ` bug#27431: " Kei Kebreau
  2017-06-20 20:19 ` [bug#27431] " Ludovic Courtès
  0 siblings, 2 replies; 5+ messages in thread
From: Kei Kebreau @ 2017-06-20 16:37 UTC (permalink / raw)
  To: 27431

[-- Attachment #1: Type: text/plain, Size: 518 bytes --]

I discovered that the Acl tests are failing partly because the coreutils
seemingly aren't compiled with Acl support before the tests are run
(even though acl is an input to coreutils). The tests are written with
the assumption that the coreutils are built with Acl support. An example
is in the sbits-restore.test file, where a sed command is expecting to
remove an Acl bit from ls output, but instead removes normal directory
permission information.

Any ideas on how to resolve this without disabling the Acl tests?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Acl test investigation
@ 2017-06-20 16:37 Kei Kebreau
  0 siblings, 0 replies; 5+ messages in thread
From: Kei Kebreau @ 2017-06-20 16:37 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 518 bytes --]

I discovered that the Acl tests are failing partly because the coreutils
seemingly aren't compiled with Acl support before the tests are run
(even though acl is an input to coreutils). The tests are written with
the assumption that the coreutils are built with Acl support. An example
is in the sbits-restore.test file, where a sed command is expecting to
remove an Acl bit from ls output, but instead removes normal directory
permission information.

Any ideas on how to resolve this without disabling the Acl tests?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#27431: Acl test investigation
  2017-06-20 16:37 [bug#27431] Acl test investigation Kei Kebreau
@ 2017-06-20 19:45 ` Kei Kebreau
  2017-06-20 20:19 ` [bug#27431] " Ludovic Courtès
  1 sibling, 0 replies; 5+ messages in thread
From: Kei Kebreau @ 2017-06-20 19:45 UTC (permalink / raw)
  To: 27431-done

[-- Attachment #1: Type: text/plain, Size: 601 bytes --]

Kei Kebreau <kei@openmailbox.org> writes:

> I discovered that the Acl tests are failing partly because the coreutils
> seemingly aren't compiled with Acl support before the tests are run
> (even though acl is an input to coreutils). The tests are written with
> the assumption that the coreutils are built with Acl support. An example
> is in the sbits-restore.test file, where a sed command is expecting to
> remove an Acl bit from ls output, but instead removes normal directory
> permission information.
>
> Any ideas on how to resolve this without disabling the Acl tests?

Wrong mailing list...

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#27431] Acl test investigation
  2017-06-20 16:37 [bug#27431] Acl test investigation Kei Kebreau
  2017-06-20 19:45 ` bug#27431: " Kei Kebreau
@ 2017-06-20 20:19 ` Ludovic Courtès
  2017-06-21  0:06   ` Kei Kebreau
  1 sibling, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2017-06-20 20:19 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: 27431

Hello Kei,

Kei Kebreau <kei@openmailbox.org> skribis:

> I discovered that the Acl tests are failing partly because the coreutils
> seemingly aren't compiled with Acl support before the tests are run
> (even though acl is an input to coreutils). The tests are written with
> the assumption that the coreutils are built with Acl support. An example
> is in the sbits-restore.test file, where a sed command is expecting to
> remove an Acl bit from ls output, but instead removes normal directory
> permission information.
>
> Any ideas on how to resolve this without disabling the Acl tests?

Could you give a bit more context?  On which branch does this failure
happen?

If the unit tests of the ‘acl’ package check the output of ‘ls’, then
there’s a circular dependency issue between Coreutils and ACL.  I would
argue that it’s up to Coreutils to test its ‘ls’ command, but in the
meantime, we could patch ACL to skip its ‘ls’ test.

Is this what you were asking?  :-)

Ludo’.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Acl test investigation
  2017-06-20 20:19 ` [bug#27431] " Ludovic Courtès
@ 2017-06-21  0:06   ` Kei Kebreau
  0 siblings, 0 replies; 5+ messages in thread
From: Kei Kebreau @ 2017-06-21  0:06 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1433 bytes --]

ludo@gnu.org (Ludovic Courtès) writes:

> Hello Kei,
>
> Kei Kebreau <kei@openmailbox.org> skribis:
>
>> I discovered that the Acl tests are failing partly because the coreutils
>> seemingly aren't compiled with Acl support before the tests are run
>> (even though acl is an input to coreutils). The tests are written with
>> the assumption that the coreutils are built with Acl support. An example
>> is in the sbits-restore.test file, where a sed command is expecting to
>> remove an Acl bit from ls output, but instead removes normal directory
>> permission information.
>>
>> Any ideas on how to resolve this without disabling the Acl tests?
>
> Could you give a bit more context?  On which branch does this failure
> happen?
>

I discovered this on the master branch and there didn't seem to be fixes
on core-updates.

> If the unit tests of the ‘acl’ package check the output of ‘ls’, then
> there’s a circular dependency issue between Coreutils and ACL. I would
> argue that it’s up to Coreutils to test its ‘ls’ command, but in the
> meantime, we could patch ACL to skip its ‘ls’ test.
>

ACL tests still fail later on, but the 'ls' test is easily fixable (just
remove the sed statement that removes the last character). I'll craft
the 'ls' related patch and see if the others can be fixed as well.

> Is this what you were asking?  :-)
>

Yes. Thanks!

> Ludo’.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-06-21  2:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-20 16:37 [bug#27431] Acl test investigation Kei Kebreau
2017-06-20 19:45 ` bug#27431: " Kei Kebreau
2017-06-20 20:19 ` [bug#27431] " Ludovic Courtès
2017-06-21  0:06   ` Kei Kebreau
  -- strict thread matches above, loose matches on Subject: below --
2017-06-20 16:37 Kei Kebreau

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.