diff options
author | Tomas Mraz <tm@t8m.info> | 2006-06-27 13:14:15 +0000 |
---|---|---|
committer | Tomas Mraz <tm@t8m.info> | 2006-06-27 13:14:15 +0000 |
commit | 4110c7f360922b82424bfa6bc7292233efbc05d4 (patch) | |
tree | dc70565ce8daafcfabb81d84832d6ebe58d70074 | |
parent | bc7424a26860cc26630a80e5500284f3af36b940 (diff) | |
download | pam-4110c7f360922b82424bfa6bc7292233efbc05d4.tar.gz pam-4110c7f360922b82424bfa6bc7292233efbc05d4.tar.bz2 pam-4110c7f360922b82424bfa6bc7292233efbc05d4.zip |
Relevant BUGIDs:
Purpose of commit: new feature
Commit summary:
---------------
* added dlopen test for pam_namespace
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | modules/pam_namespace/Makefile.am | 3 | ||||
-rwxr-xr-x | modules/pam_namespace/tst-pam_namespace | 2 |
3 files changed, 5 insertions, 1 deletions
@@ -12,6 +12,7 @@ * modules/pam_namespace/namespace.init: New. * modules/pam_namespace/pam_namespace.8: New. * modules/pam_namespace/pam_namespace.8.xml: New. + * modules/pam_namespace/tst-pam_keyinit: New. * modules/Makefile.am: Added pam_namespace. * configure.in: Added pam_namespace, test for unshare library call. diff --git a/modules/pam_namespace/Makefile.am b/modules/pam_namespace/Makefile.am index e1e8931f..5d6dc018 100644 --- a/modules/pam_namespace/Makefile.am +++ b/modules/pam_namespace/Makefile.am @@ -14,7 +14,7 @@ if ENABLE_REGENERATE_MAN -include $(top_srcdir)/Make.xml.rules endif -EXTRA_DIST = README namespace.conf $(man_MANS) $(XMLS) +EXTRA_DIST = README namespace.conf $(man_MANS) $(XMLS) tst-pam_namespace noinst_HEADERS = md5.h @@ -35,4 +35,5 @@ pam_namespace_la_SOURCES = pam_namespace.c md5.c md5.h secureconf_DATA = namespace.conf secureconf_SCRIPTS = namespace.init +TESTS = tst-pam_namespace endif diff --git a/modules/pam_namespace/tst-pam_namespace b/modules/pam_namespace/tst-pam_namespace new file mode 100755 index 00000000..c929dfcf --- /dev/null +++ b/modules/pam_namespace/tst-pam_namespace @@ -0,0 +1,2 @@ +#!/bin/sh +../../tests/tst-dlopen .libs/pam_namespace.so |