Check if test_rehash is run as root
If test/recipes/40-test_rehash.t is executed as root, the last test will fail, since the created directory will remain writable no matter what. Make sure it complains loudly about being run as root. Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
88f84eb257
commit
e008d1b267
@ -10,7 +10,7 @@ use OpenSSL::Test qw/:DEFAULT top_file/;
|
|||||||
|
|
||||||
setup("test_rehash");
|
setup("test_rehash");
|
||||||
|
|
||||||
plan tests => 4;
|
plan tests => 5;
|
||||||
|
|
||||||
indir "rehash.$$" => sub {
|
indir "rehash.$$" => sub {
|
||||||
prepare();
|
prepare();
|
||||||
@ -32,8 +32,15 @@ indir "rehash.$$" => sub {
|
|||||||
indir "rehash.$$" => sub {
|
indir "rehash.$$" => sub {
|
||||||
prepare();
|
prepare();
|
||||||
chmod 0500, curdir();
|
chmod 0500, curdir();
|
||||||
isnt(run(app(["openssl", "rehash", curdir()])), 1,
|
SKIP: {
|
||||||
'Testing rehash operations on readonly directory');
|
if (!ok(!open(FOO, ">unwritable.txt"),
|
||||||
|
"Testing that we aren't running as a priviledged user, such as root")) {
|
||||||
|
close FOO;
|
||||||
|
skip "It's pointless to run the next test as root", 1;
|
||||||
|
}
|
||||||
|
isnt(run(app(["openssl", "rehash", curdir()])), 1,
|
||||||
|
'Testing rehash operations on readonly directory');
|
||||||
|
}
|
||||||
chmod 0700, curdir(); # make it writable again, so cleanup works
|
chmod 0700, curdir(); # make it writable again, so cleanup works
|
||||||
}, create => 1, cleanup => 1;
|
}, create => 1, cleanup => 1;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user