summaryrefslogtreecommitdiff
path: root/t/lib/ipc_sysv.t
diff options
context:
space:
mode:
Diffstat (limited to 't/lib/ipc_sysv.t')
-rwxr-xr-xt/lib/ipc_sysv.t10
1 files changed, 2 insertions, 8 deletions
diff --git a/t/lib/ipc_sysv.t b/t/lib/ipc_sysv.t
index e2ffd76ff1..a4f3e3f367 100755
--- a/t/lib/ipc_sysv.t
+++ b/t/lib/ipc_sysv.t
@@ -23,8 +23,7 @@ BEGIN {
# These constants are common to all tests.
# Later the sem* tests will import more for themselves.
-use IPC::SysV qw(IPC_PRIVATE IPC_NOWAIT IPC_STAT IPC_RMID
- S_IRWXU S_IRWXG S_IRWXO S_IWGRP S_IROTH S_IWOTH);
+use IPC::SysV qw(IPC_PRIVATE IPC_NOWAIT IPC_STAT IPC_RMID S_IRWXU);
use strict;
print "1..16\n";
@@ -55,12 +54,7 @@ EOM
exit(1);
};
-my $perm;
-
-$perm = S_IRWXU | S_IRWXG | S_IRWXO | S_IWGRP | S_IROTH | S_IWOTH
- if $^O eq 'vmesa';
-
-$perm = S_IRWXU | S_IRWXG | S_IRWXO unless defined $perm;
+my $perm = S_IRWXU;
if ($Config{'d_msgget'} eq 'define' &&
$Config{'d_msgctl'} eq 'define' &&