summaryrefslogtreecommitdiff
path: root/ACE/bin/PerlACE/Run_Test.pm
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/bin/PerlACE/Run_Test.pm')
-rw-r--r--ACE/bin/PerlACE/Run_Test.pm23
1 files changed, 0 insertions, 23 deletions
diff --git a/ACE/bin/PerlACE/Run_Test.pm b/ACE/bin/PerlACE/Run_Test.pm
index 165a3149be2..fe0bfb74aff 100644
--- a/ACE/bin/PerlACE/Run_Test.pm
+++ b/ACE/bin/PerlACE/Run_Test.pm
@@ -251,29 +251,6 @@ sub add_lib_path {
sub check_privilege_group
{
- if ($^O eq 'hpux') {
- my($access) = 'RTSCHED';
- my($status) = 0;
- my($getprivgrp) = '/bin/getprivgrp';
-
- if (-x $getprivgrp) {
- if (open(GPG, "$getprivgrp |")) {
- while(<GPG>) {
- if (index($_, $access) >= 0) {
- $status = 1;
- }
- }
- close(GPG);
- }
- }
-
- if (!$status) {
- print STDERR
- "WARNING: You must have $access privileges to run this test.\n",
- " Run \"man 1m setprivgrp\" for more information.\n";
- exit(0);
- }
- }
}
# waits until it finds a matching regular expression in a file