summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main.cxx5
-rwxr-xr-xtestsuite/parseko/cmdline05.stp6
-rwxr-xr-xtestsuite/parseok/cmdline03.stp6
3 files changed, 0 insertions, 17 deletions
diff --git a/main.cxx b/main.cxx
index 69d7fa77..71c70df8 100644
--- a/main.cxx
+++ b/main.cxx
@@ -429,11 +429,6 @@ checkOptions (systemtap_session &s)
cerr << "You can't specify -g and --unprivileged together." << endl;
optionsConflict = true;
}
- if (s.module_name.compare(0, 5, "stap_") != 0)
- {
- cerr << "In unprivileged mode, the module name must start with 'stap_'." << endl;
- optionsConflict = true;
- }
}
if (!s.kernel_symtab_path.empty())
diff --git a/testsuite/parseko/cmdline05.stp b/testsuite/parseko/cmdline05.stp
deleted file mode 100755
index f8c437ea..00000000
--- a/testsuite/parseko/cmdline05.stp
+++ /dev/null
@@ -1,6 +0,0 @@
-#! /bin/sh
-
-# Make sure unprivileged ('--unprivileged') option isn't accepted when
-# a module name not starting with 'stap_' is used.
-
-stap --unprivileged -m 'nfs' -p1 -e 'probe begin { exit() }'
diff --git a/testsuite/parseok/cmdline03.stp b/testsuite/parseok/cmdline03.stp
deleted file mode 100755
index d0ba5bbf..00000000
--- a/testsuite/parseok/cmdline03.stp
+++ /dev/null
@@ -1,6 +0,0 @@
-#! /bin/sh
-
-# Make sure unprivileged ('--unprivileged') option is accepted when a
-# module name starting with 'stap_' is used.
-
-stap --unprivileged -m 'stap_foo' -p1 -e 'probe begin { exit() }'