[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#30273: FAIL: testsuite/panic-tests.sh
From: |
Assaf Gordon |
Subject: |
bug#30273: FAIL: testsuite/panic-tests.sh |
Date: |
Mon, 29 Jan 2018 14:50:49 -0700 |
User-agent: |
NeoMutt/20170113 (1.7.2) |
Hello,
On Sun, Jan 28, 2018 at 01:13:39PM -0500, Jeffrey Walton wrote:
> I'm working on a Debian X32 system in a chroot environment. One of the
> self tests failed.
>
> I've seen bash do some unusual things in this environment, so it may
> be a shell problem.
>
> FAIL: testsuite/panic-tests.sh
Thank you reporting this issue.
>From a cursory look, it seems sed is able to create
a temporary file in a read-only directory, and thus
it doesn't fail as expected (your log shows the expected
message of "can't create temp file" was missing).
To help us better diagnose the issue, can you
re-run the test with the following command and
send the resulting log file:
make check TESTS=testsuite/panic-tests.sh VERBOSE=yes SUBDIRS=.
Also, can you try the following commands in the same directory
as 'sed', as a sanity check?
mkdir aaa
chmod a-w aaa
touch aaa/bbb
The 'touch' command should fail with "permission denied"
(this is esentially the sed test that fails).
regards,
- assaf