• Home
  • History
  • Annotate
  • only in /external/ltp/testcases/kernel/containers/pidns/
History log of /external/ltp/testcases/kernel/containers/pidns/
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
c1b438d4e1091d0e37da5ab0cdeacd51af3ba5eb 09-May-2017 Helge Deller <deller@gmx.de> Add terminating NUL after calling readlink()

readlink() does not append a NUL byte to the target buffer. Fix it in
the pidns03 and fsstress testcases to avoid wrong test results.

Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
idns03.c
92ab7be77fcf040b92f73371ab6f3454ef429ec5 11-Dec-2016 Steven Jackson <sj@oscode.net> various: remove redeclarations of 'int errno'

This fixes builds using the Android NDK.

Signed-off-by: Steven Jackson <sj@oscode.net>
Acked-by: Cyril Hrubis <chrubis@suse.cz>
idns10.c
idns12.c
idns17.c
idns20.c
idns30.c
idns31.c
38e181cbc686d59dcfd1b1b90ee0d8e5f1dd7505 25-Jul-2016 Cyril Hrubis <chrubis@suse.cz> containers,tomoyo: Fix order of included headers

Since the test.h defined clone(...) macro in order to avoid direct use
of the function it has to be included after all system headers,
otherwise the definition of clone() function in sched.h will be replaced
as well.

This wasn't the case for most of the containers/*/*.c testcases which
included test.h followed by foo_helper.h header that included sched.h.
The code in question compiled by a pure luck as the clone function
definition was replaced by a garbage which had been syntactically
correct.

This patch moves the test.h header after the foo_helper.h and also
removes a few duplicated includes as well.

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
idns01.c
idns02.c
idns03.c
idns04.c
idns05.c
idns06.c
idns10.c
idns12.c
idns13.c
idns16.c
idns17.c
idns20.c
idns30.c
idns31.c
idns32.c
8996ea6c5954a334b1a77e8be6ba10abf025fc43 17-Aug-2015 Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> containers: allow linking with additional libs

Makefiles in kernel/containers explicitly enumerate all
required libraries in LDLIBS. This avoids linking the
test cases with additional libraries, whereas all other LTP
test cases can be linked this way.

Fixed this by using $(LDLIBS) instead of '-lltp'.

Signed-off-by: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
akefile
a1471c5ce14eb34f8102014724106637f5c99117 14-Aug-2015 Yuan Sun <sunyuan3@huawei.com> containers: new testcase pidns32

Test that we can create 32 nested levels of pid namespaces.

For kernels >= 3.7 this is also hard limit, see MAX_PID_NS_LEVEL
in kernel/pid_namespace.c.

Signed-off-by: Yuan Sun <sunyuan3@huawei.com>
Reviewed-by: Jan Stancek <jstancek@redhat.com>
gitignore
idns32.c
d1e794d62b1bf619df8390535e4c2a58899b1145 30-Jul-2015 Cyril Hrubis <chrubis@suse.cz> lib: Get rid of unused tst_require_root() callback

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
idns01.c
idns02.c
idns03.c
idns04.c
idns05.c
idns06.c
idns10.c
idns12.c
idns13.c
idns16.c
idns17.c
idns20.c
idns30.c
idns31.c
6431698bdbe89ec27eaf93caf68f9a8e132e61fb 26-Jun-2015 Maninder Singh <maninder1.s@samsung.com> kernel/pidns: use ARRAY_SIZE

Signed-off-by: Maninder Singh <maninder1.s@samsung.com>
Reviewed-by: Akhilesh Kumar <akhilesh.k@samsung.com>
idns17.c
d832cc184604c4e744f30fc819928175c6366317 26-Jun-2015 Yuan Sun <sunyuan3@huawei.com> pidns: Update TCID from pid_namespace to pidns.

Signed-off-by: Yuan Sun <sunyuan3@huawei.com>
idns01.c
idns02.c
idns03.c
idns04.c
044315e5614273e9d65f41b672b3b916d3e86459 06-May-2015 Yuan Sun <sunyuan3@huawei.com> Remove the cleanup function since it is empty.

Signed-off-by: Yuan Sun <sunyuan3@huawei.com>
idns01.c
idns02.c
idns05.c
idns06.c
idns10.c
idns12.c
idns13.c
idns16.c
idns17.c
idns20.c
aa4c8e976d806742eb830b1f2cdd2e4d7811e3c4 05-May-2015 Yuan Sun <sunyuan3@huawei.com> Avoid the following warning when the ltp is built.

pidns01.c:62:21: warning: unused parameter
int child_fn1(void *ttype)

pidns01.c:98:2: warning: implicit declaration of function
pidns01.c:88:14: warning: unused parameter
int main(int argc, char *argv[])

pidns01.c:113:13: warning: old-style function definition [-Wold-style-definition]
static void cleanup()

Signed-off-by: Yuan Sun <sunyuan3@huawei.com>
idns01.c
d6d11d08678aac1ed2c370ea8e42e5f45aea07be 09-Mar-2015 Cyril Hrubis <chrubis@suse.cz> Introduce tst_parse_opts()

The pattern that was used in all testcases is:

const char *msg;

msg = parse_opts(...);
if (msg)
tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);

This change simplifies the steps to just calling:

tst_parse_opts(...);

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
idns03.c
aabb8340f63ed31afe995fd97795e542dc68b93c 04-Feb-2015 Cyril Hrubis <chrubis@suse.cz> Include usctest.h in test.h

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
idns01.c
idns02.c
idns03.c
idns04.c
idns05.c
idns06.c
idns10.c
idns12.c
idns13.c
idns16.c
idns17.c
idns20.c
idns30.c
idns31.c
605fa3362fd7cef0baa2131be32cf44661783d3e 04-Feb-2015 Cyril Hrubis <chrubis@suse.cz> Get rid of TEST_CLEANUP

Special thanks to Coccinelle for making this easy job.

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
idns01.c
idns02.c
idns04.c
idns05.c
idns06.c
idns10.c
idns12.c
idns13.c
idns16.c
idns17.c
idns20.c
idns30.c
idns31.c
ed991ae835a3a59fe7c3f08c076b8805be79148d 29-Jul-2014 Jan Stancek <jstancek@redhat.com> extract pidns tests from runpidnstest.sh to runtest/containers

Extract pinds testcases from container_test.sh and list
all separately in containers runtest.

Signed-off-by: Jan Stancek <jstancek@redhat.com>
gitignore
heck_pidns_enabled.c
idns01.c
idns02.c
idns03.c
idns04.c
idns05.c
idns06.c
idns10.c
idns12.c
idns13.c
idns16.c
idns17.c
idns20.c
idns30.c
idns31.c
idns_helper.h
unpidnstest.sh
fd5e693b8802792c3be8b0ba15911b4ac4b2ca03 25-Jul-2014 Matus Marhefka <mmarhefk@redhat.com> containers: added pidns/pidns03.c

* Clones a new child process with CLONE_NEWPID flag - the new child
* process mounts procfs to a "proc" directory and checks if it belongs
* to a new pid namespace by:
* 1. reading value of "proc/self", which is symlink
* to directory named after current pid number
* 2. comparing read value (PID) with "1"

Signed-off-by: Matus Marhefka <mmarhefk@redhat.com>
Signed-off-by: Jiri Jaburek <jjaburek@redhat.com>
Reviewed-by: Jan Stancek <jstancek@redhat.com>
Acked-by: Cyril Hrubis <chrubis@suse.cz>
idns03.c
359980f68b19c77c698b121b57a071dfe6e3ca31 15-Feb-2013 Jan Stancek <jstancek@redhat.com> rename syscall() macro to ltp_syscall()

This patch renames syscall() macro defined in linux_syscall_numbers.h
to reduce confusion with syscall(2). It also updates all places
where it was previously in use.

Signed-off-by: Jan Stancek <jstancek@redhat.com>
Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
idns30.c
idns31.c
45192246690d9c8389f48602dfeb8877d40094bc 08-Jan-2013 Monson Shao <jshao@redhat.com> containers: delete redundant newline in tst_resm()

Some output strings in tst_resm() have ending newline but some have not,
and it causes disordered blank line in logfile.
Deleting all ending newline makes it uniform and good to read.

Signed-off-by: Monson Shao <jshao@redhat.com>
Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
idns01.c
idns05.c
idns16.c
38bf6cde3f7b91ed25aeebaae3a1f64664a4b0d4 26-Dec-2012 Monson Shao <jshao@redhat.com> pidns16: child should not get parent pid in parent NS

parent pid in parent NS is invisible to child, even when child got signalled
from parent, the signaller process should be fake parent (PID 0).

Signed-off-by: Monson Shao <jshao@redhat.com>
Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
idns16.c
a5eeee9e760c15b653573fed8106a7a5d8761475 26-Dec-2012 Monson Shao <jshao@redhat.com> pidns16: modified test results

The test should result TFAIL if child is signalled from unexpected pid,
instead of TBROK. The same as TPASS/TINFO .

Signed-off-by: Monson Shao <jshao@redhat.com>
Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
idns16.c
c19b2108f60458996ef817be4ad533b4c30c1fc3 26-Dec-2012 Monson Shao <jshao@redhat.com> pidns16: split test condition and result judge

Make it easy to read.

Signed-off-by: Monson Shao <jshao@redhat.com>
Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
idns16.c
0ea93795469c7c1364e7f343c21df5745bf3154c 25-Dec-2012 Monson Shao <jshao@redhat.com> pidns30 pidns31: syscall mq_open() failed EFAULT(Bad address)

'man 3 mq_open' said mq_open() can take 2 or 4 arguments, but the implement
syscall(__NR_mq_open, ...) takes 4, according to [1].

Manually tested on kernel-3.6.0 with glibc-2.16 .

[1] glibc/sysdeps/unix/sysv/linux/mq_open.c:55

Signed-off-by: Monson Shao <jshao@redhat.com>
Reviewed-by: Caspar Zhang <caspar@casparzhang.com>
Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
idns30.c
idns31.c
354ebb48db8e66a853a58379a4808d5dcd1ceac3 07-Dec-2012 Wanlong Gao <gaowanlong@cn.fujitsu.com> cleanup code indent

Cleanup the code indent using:

find . -name *.c -exec Lindent {} \;

It's really a big change, but can fix almost all of
the indent problem in C code, although we can't
ensure all of the changes are right, but the error
changes are really few.

Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
idns01.c
idns02.c
idns04.c
idns05.c
idns06.c
idns10.c
idns12.c
idns13.c
idns16.c
idns17.c
idns20.c
idns30.c
idns31.c
4548c6cf9bcdd96d8303caa4130ab638b61f8a30 19-Oct-2012 Wanlong Gao <gaowanlong@cn.fujitsu.com> Update FSF address

find . -type f -exec sed -i 's/675 Mass Ave, Cambridge, MA 02139, USA/51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA/g' {} \;
find . -type f -exec sed -i 's/59 Temple Place, Suite 330, Boston, MA 02111-1307 USA/51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA/g' {} \;

Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
akefile
EADME
heck_pidns_enabled.c
idns01.c
idns02.c
idns04.c
idns05.c
idns06.c
idns10.c
idns12.c
idns13.c
idns16.c
idns17.c
idns20.c
idns30.c
idns31.c
unpidnstest.sh
ec6edca7aa42b6affd989ef91b5897f96795e40f 18-Oct-2012 Chris Dearman <chris@mips.com> Add missing newline at end of file

This is a scripted change done using the following command:

find . -type d -name .git -prune -o \
-type f \! -name \*\~ \! -name .\#\* \
\! -name \*.gz \! -name \*.pdf \! -name \*.patch -print0 | \
xargs -0 sed -i -e '$a\'

Signed-off-by: Chris Dearman <chris@mips.com>
heck_pidns_enabled.c
idns01.c
idns02.c
idns04.c
idns06.c
idns10.c
idns12.c
idns13.c
idns16.c
idns17.c
idns20.c
idns30.c
idns31.c
b55240061add9475f0e5fbe24b0fda844b1647da 12-Mar-2012 Mike Frysinger <vapier@gentoo.org> expand gitignore coverage

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
gitignore
02fa930dca5551b5f3aeaa75d04503bb32967545 04-Apr-2011 Peng Haitao <penght@cn.fujitsu.com> pidns05.c: fix suspend due to call waitpid() wrongly and wrong return code

waitpid() should be called after kill() in function kill_nested_containers(),
otherwise the case will suspend.

Signed-off-by: Peng Haitao <penght@cn.fujitsu.com>
idns05.c
e8530df4da095b0ea36a9ff8118ab5ce906b3e84 21-Dec-2010 Garrett Cooper <yanegomi@gmail.com> Fix header include format.

All relative includes need to use #include "foo.h", not #include <foo.h>.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
idns01.c
idns02.c
idns04.c
idns05.c
idns06.c
idns10.c
idns12.c
idns13.c
idns16.c
idns17.c
idns20.c
1e6f5a673655551de5734ff31ef48cd63b604e6d 19-Dec-2010 Garrett Cooper <yanegomi@gmail.com> Resolving all compile errors via a script

This may leave dupe calls to tst_exit in main, but those are easier
to deal (and much less) than no-compile scenarios.

As a side-effect, fix all trailing whitespace issues.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
heck_pidns_enabled.c
idns01.c
idns02.c
idns04.c
idns05.c
idns06.c
idns10.c
idns17.c
idns20.c
idns30.c
ad14e9003b9f1070deca0498b341ab3deef3055d 16-Dec-2010 Garrett Cooper <yanegomi@gmail.com> Style and consistency.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
akefile
heck_pidns_enabled.c
idns01.c
idns02.c
idns04.c
idns05.c
idns06.c
idns10.c
idns17.c
idns20.c
idns30.c
e7a0940ca2fae4c871db2b6b6e5fd5f8a9d9f80d 16-Dec-2010 Garrett Cooper <yanegomi@gmail.com> Remove useless casts.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
idns30.c
bc5a46fbd15470cc8634341388053d56b70123ce 16-Dec-2010 Garrett Cooper <yanegomi@gmail.com> Fix style.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
heck_pidns_enabled.c
2c28215423293e443469a07ae7011135d058b671 16-Dec-2010 Garrett Cooper <yanegomi@gmail.com> Style and conformance changes.

1. Strip all leading space.
2. Move tst_exit() to main().
3. Remove tst_exit() from cleanup().
4. Remove cluebat comments.
5. Reduce some unnecessary whitespace.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
heck_pidns_enabled.c
idns01.c
idns02.c
idns04.c
idns05.c
idns06.c
idns10.c
idns12.c
idns13.c
idns16.c
idns17.c
idns20.c
idns30.c
idns31.c
53740500924f6439623a8ac256b5be2d6c59ed1f 16-Dec-2010 Garrett Cooper <yanegomi@gmail.com> Merge branch 'master' into ltp-broom

Checkpoint work.

Conflicts:
doc/man3/tst_res.3
lib/tst_res.c
testcases/commands/ade/size/test.c
testcases/kernel/containers/pidns/pidns04.c
testcases/kernel/device-drivers/agp/kernel_space/tagp.c
testcases/kernel/device-drivers/base/tbase/tbase.c
testcases/kernel/device-drivers/dev_sim_framework/kernel_space/tmod.c
testcases/kernel/device-drivers/pci/tpci/tpci.c
testcases/kernel/device-drivers/tbio/kernel_space/tbio.c
testcases/kernel/device-drivers/usb/tusb/tusb.c
testcases/kernel/device-drivers/usb/user_usb/user_tusb.c
testcases/kernel/fs/acls/acl_file_test.c
testcases/kernel/fs/acls/acl_link_test.c
testcases/kernel/fs/doio/doio.c
testcases/kernel/fs/doio/growfiles.c
testcases/kernel/fs/doio/iogen.c
testcases/kernel/fs/inode/inode02.c
testcases/kernel/fs/mongo/mongo_compare.c
testcases/kernel/fs/stream/stream01.c
testcases/kernel/fs/stream/stream02.c
testcases/kernel/fs/stream/stream04.c
testcases/kernel/fs/stream/stream05.c
testcases/kernel/hotplug/memory_hotplug/commands.c
testcases/kernel/io/direct_io/diotest_routines.c
testcases/kernel/io/disktest/parse.c
testcases/kernel/io/ltp-aiodio/aio-stress.c
testcases/kernel/io/ltp-aiodio/aiodio_append.c
testcases/kernel/io/writetest/writetest.c
testcases/kernel/ipc/pipeio/pipeio.c
testcases/kernel/mem/hugetlb/hugeshmat/hugeshmat01.c
testcases/kernel/mem/hugetlb/hugeshmat/hugeshmat02.c
testcases/kernel/mem/hugetlb/hugeshmat/hugeshmat03.c
testcases/kernel/mem/hugetlb/hugeshmctl/hugeshmctl01.c
testcases/kernel/mem/hugetlb/hugeshmctl/hugeshmctl02.c
testcases/kernel/mem/hugetlb/hugeshmctl/hugeshmctl03.c
testcases/kernel/mem/hugetlb/hugeshmdt/hugeshmdt01.c
testcases/kernel/mem/hugetlb/hugeshmget/hugeshmget01.c
testcases/kernel/mem/hugetlb/hugeshmget/hugeshmget02.c
testcases/kernel/mem/hugetlb/hugeshmget/hugeshmget03.c
testcases/kernel/mem/hugetlb/hugeshmget/hugeshmget05.c
testcases/kernel/mem/mtest01/mtest01.c
testcases/kernel/mem/vmtests/data_space.c
testcases/kernel/module/create_module/create_module01.c
testcases/kernel/module/create_module/create_module02.c
testcases/kernel/module/delete_module/delete_module02.c
testcases/kernel/module/delete_module/delete_module03.c
testcases/kernel/module/query_module/query_module01.c
testcases/kernel/module/query_module/query_module03.c
testcases/kernel/numa/support_numa.c
testcases/kernel/sched/process_stress/process.c
testcases/kernel/security/selinux-testsuite/tests/capable_file/selinux_lease.c
testcases/kernel/security/selinux-testsuite/tests/capable_sys/selinux_chroot.c
testcases/kernel/security/selinux-testsuite/tests/capable_sys/selinux_hostname.c
testcases/kernel/security/selinux-testsuite/tests/capable_sys/selinux_nice.c
testcases/kernel/security/selinux-testsuite/tests/capable_sys/selinux_rawio.c
testcases/kernel/security/selinux-testsuite/tests/file/selinux_fcntl.c
testcases/kernel/security/selinux-testsuite/tests/file/selinux_lock.c
testcases/kernel/security/selinux-testsuite/tests/file/selinux_mmap.c
testcases/kernel/security/selinux-testsuite/tests/file/selinux_mprotect.c
testcases/kernel/security/selinux-testsuite/tests/file/selinux_nofcntl.c
testcases/kernel/security/selinux-testsuite/tests/file/selinux_seek.c
testcases/kernel/security/selinux-testsuite/tests/file/selinux_sigiotask.c
testcases/kernel/security/selinux-testsuite/tests/ioctl/selinux_ioctl.c
testcases/kernel/security/selinux-testsuite/tests/ioctl/selinux_noioctl.c
testcases/kernel/syscalls/abort/abort01.c
testcases/kernel/syscalls/accept/accept01.c
testcases/kernel/syscalls/access/access01.c
testcases/kernel/syscalls/access/access02.c
testcases/kernel/syscalls/access/access03.c
testcases/kernel/syscalls/access/access04.c
testcases/kernel/syscalls/access/access05.c
testcases/kernel/syscalls/add_key/add_key01.c
testcases/kernel/syscalls/add_key/add_key02.c
testcases/kernel/syscalls/adjtimex/adjtimex01.c
testcases/kernel/syscalls/adjtimex/adjtimex02.c
testcases/kernel/syscalls/alarm/alarm01.c
testcases/kernel/syscalls/alarm/alarm02.c
testcases/kernel/syscalls/alarm/alarm03.c
testcases/kernel/syscalls/alarm/alarm05.c
testcases/kernel/syscalls/alarm/alarm06.c
testcases/kernel/syscalls/alarm/alarm07.c
testcases/kernel/syscalls/asyncio/asyncio02.c
testcases/kernel/syscalls/bdflush/bdflush01.c
testcases/kernel/syscalls/bind/bind01.c
testcases/kernel/syscalls/cacheflush/cacheflush01.c
testcases/kernel/syscalls/capget/capget01.c
testcases/kernel/syscalls/capget/capget02.c
testcases/kernel/syscalls/capset/capset01.c
testcases/kernel/syscalls/capset/capset02.c
testcases/kernel/syscalls/chdir/chdir01.c
testcases/kernel/syscalls/chdir/chdir02.c
testcases/kernel/syscalls/chdir/chdir03.c
testcases/kernel/syscalls/chdir/chdir04.c
testcases/kernel/syscalls/chmod/chmod01.c
testcases/kernel/syscalls/chmod/chmod03.c
testcases/kernel/syscalls/chmod/chmod04.c
testcases/kernel/syscalls/chmod/chmod05.c
testcases/kernel/syscalls/chmod/chmod06.c
testcases/kernel/syscalls/chmod/chmod07.c
testcases/kernel/syscalls/chown/chown01.c
testcases/kernel/syscalls/chown/chown02.c
testcases/kernel/syscalls/chown/chown03.c
testcases/kernel/syscalls/chown/chown04.c
testcases/kernel/syscalls/chown/chown05.c
testcases/kernel/syscalls/chroot/chroot01.c
testcases/kernel/syscalls/chroot/chroot02.c
testcases/kernel/syscalls/chroot/chroot03.c
testcases/kernel/syscalls/chroot/chroot04.c
testcases/kernel/syscalls/clock_getres/clock_getres01.c
testcases/kernel/syscalls/clock_nanosleep/clock_nanosleep01.c
testcases/kernel/syscalls/clock_nanosleep2/clock_nanosleep2_01.c
testcases/kernel/syscalls/clone/clone01.c
testcases/kernel/syscalls/clone/clone02.c
testcases/kernel/syscalls/clone/clone03.c
testcases/kernel/syscalls/clone/clone04.c
testcases/kernel/syscalls/clone/clone05.c
testcases/kernel/syscalls/clone/clone06.c
testcases/kernel/syscalls/clone/clone07.c
testcases/kernel/syscalls/close/close01.c
testcases/kernel/syscalls/close/close02.c
testcases/kernel/syscalls/close/close08.c
testcases/kernel/syscalls/connect/connect01.c
testcases/kernel/syscalls/creat/creat01.c
testcases/kernel/syscalls/creat/creat03.c
testcases/kernel/syscalls/creat/creat04.c
testcases/kernel/syscalls/creat/creat05.c
testcases/kernel/syscalls/creat/creat06.c
testcases/kernel/syscalls/creat/creat07.c
testcases/kernel/syscalls/creat/creat09.c
testcases/kernel/syscalls/dup2/dup201.c
testcases/kernel/syscalls/dup2/dup203.c
testcases/kernel/syscalls/dup2/dup204.c
testcases/kernel/syscalls/dup3/dup3_01.c
testcases/kernel/syscalls/epoll_create1/epoll_create1_01.c
testcases/kernel/syscalls/eventfd2/eventfd2_01.c
testcases/kernel/syscalls/eventfd2/eventfd2_02.c
testcases/kernel/syscalls/execl/execl01.c
testcases/kernel/syscalls/execle/execle01.c
testcases/kernel/syscalls/execlp/execlp01.c
testcases/kernel/syscalls/execv/execv01.c
testcases/kernel/syscalls/execve/execve01.c
testcases/kernel/syscalls/execve/execve02.c
testcases/kernel/syscalls/execve/execve03.c
testcases/kernel/syscalls/execve/execve04.c
testcases/kernel/syscalls/execve/execve05.c
testcases/kernel/syscalls/execvp/execvp01.c
testcases/kernel/syscalls/exit/exit02.c
testcases/kernel/syscalls/exit_group/exit_group01.c
testcases/kernel/syscalls/faccessat/faccessat01.c
testcases/kernel/syscalls/fadvise/posix_fadvise01.c
testcases/kernel/syscalls/fadvise/posix_fadvise02.c
testcases/kernel/syscalls/fadvise/posix_fadvise03.c
testcases/kernel/syscalls/fadvise/posix_fadvise04.c
testcases/kernel/syscalls/fallocate/fallocate01.c
testcases/kernel/syscalls/fallocate/fallocate02.c
testcases/kernel/syscalls/fallocate/fallocate03.c
testcases/kernel/syscalls/fchdir/fchdir01.c
testcases/kernel/syscalls/fchdir/fchdir02.c
testcases/kernel/syscalls/fchdir/fchdir03.c
testcases/kernel/syscalls/fchmod/fchmod01.c
testcases/kernel/syscalls/fchmod/fchmod02.c
testcases/kernel/syscalls/fchmod/fchmod03.c
testcases/kernel/syscalls/fchmod/fchmod04.c
testcases/kernel/syscalls/fchmod/fchmod05.c
testcases/kernel/syscalls/fchmod/fchmod06.c
testcases/kernel/syscalls/fchmod/fchmod07.c
testcases/kernel/syscalls/fchmodat/fchmodat01.c
testcases/kernel/syscalls/fchown/fchown01.c
testcases/kernel/syscalls/fchown/fchown02.c
testcases/kernel/syscalls/fchown/fchown03.c
testcases/kernel/syscalls/fchown/fchown04.c
testcases/kernel/syscalls/fchown/fchown05.c
testcases/kernel/syscalls/fchownat/fchownat01.c
testcases/kernel/syscalls/fcntl/fcntl01.c
testcases/kernel/syscalls/fcntl/fcntl02.c
testcases/kernel/syscalls/fcntl/fcntl03.c
testcases/kernel/syscalls/fcntl/fcntl04.c
testcases/kernel/syscalls/fcntl/fcntl05.c
testcases/kernel/syscalls/fcntl/fcntl06.c
testcases/kernel/syscalls/fcntl/fcntl09.c
testcases/kernel/syscalls/fcntl/fcntl10.c
testcases/kernel/syscalls/fcntl/fcntl11.c
testcases/kernel/syscalls/fcntl/fcntl12.c
testcases/kernel/syscalls/fcntl/fcntl13.c
testcases/kernel/syscalls/fcntl/fcntl14.c
testcases/kernel/syscalls/fcntl/fcntl15.c
testcases/kernel/syscalls/fcntl/fcntl16.c
testcases/kernel/syscalls/fcntl/fcntl17.c
testcases/kernel/syscalls/fcntl/fcntl18.c
testcases/kernel/syscalls/fcntl/fcntl19.c
testcases/kernel/syscalls/fcntl/fcntl20.c
testcases/kernel/syscalls/fcntl/fcntl21.c
testcases/kernel/syscalls/fcntl/fcntl22.c
testcases/kernel/syscalls/fcntl/fcntl23.c
testcases/kernel/syscalls/fcntl/fcntl24.c
testcases/kernel/syscalls/fcntl/fcntl25.c
testcases/kernel/syscalls/fcntl/fcntl26.c
testcases/kernel/syscalls/fcntl/fcntl27.c
testcases/kernel/syscalls/fcntl/fcntl28.c
testcases/kernel/syscalls/fork/fork01.c
testcases/kernel/syscalls/fork/fork02.c
testcases/kernel/syscalls/fork/fork03.c
testcases/kernel/syscalls/fork/fork06.c
testcases/kernel/syscalls/fork/fork07.c
testcases/kernel/syscalls/fork/fork08.c
testcases/kernel/syscalls/fork/fork09.c
testcases/kernel/syscalls/fork/fork10.c
testcases/kernel/syscalls/fork/fork11.c
testcases/kernel/syscalls/fork/fork12.c
testcases/kernel/syscalls/fstat/fstat01.c
testcases/kernel/syscalls/fstat/fstat02.c
testcases/kernel/syscalls/fstat/fstat03.c
testcases/kernel/syscalls/fstat/fstat04.c
testcases/kernel/syscalls/fstat/fstat05.c
testcases/kernel/syscalls/fstatat/fstatat01.c
testcases/kernel/syscalls/fstatfs/fstatfs01.c
testcases/kernel/syscalls/fstatfs/fstatfs02.c
testcases/kernel/syscalls/fsync/fsync01.c
testcases/kernel/syscalls/fsync/fsync02.c
testcases/kernel/syscalls/fsync/fsync03.c
testcases/kernel/syscalls/ftruncate/ftruncate01.c
testcases/kernel/syscalls/ftruncate/ftruncate02.c
testcases/kernel/syscalls/futimesat/futimesat01.c
testcases/kernel/syscalls/get_mempolicy/get_mempolicy01.c
testcases/kernel/syscalls/get_robust_list/get_robust_list01.c
testcases/kernel/syscalls/getcontext/getcontext01.c
testcases/kernel/syscalls/getcpu/getcpu01.c
testcases/kernel/syscalls/getcwd/getcwd01.c
testcases/kernel/syscalls/getcwd/getcwd02.c
testcases/kernel/syscalls/getcwd/getcwd03.c
testcases/kernel/syscalls/getdents/getdents01.c
testcases/kernel/syscalls/getdents/getdents02.c
testcases/kernel/syscalls/getdents/getdents03.c
testcases/kernel/syscalls/getdents/getdents04.c
testcases/kernel/syscalls/getdomainname/getdomainname01.c
testcases/kernel/syscalls/getegid/getegid01.c
testcases/kernel/syscalls/getegid/getegid02.c
testcases/kernel/syscalls/geteuid/geteuid01.c
testcases/kernel/syscalls/getgid/getgid01.c
testcases/kernel/syscalls/getgid/getgid03.c
testcases/kernel/syscalls/getgroups/getgroups02.c
testcases/kernel/syscalls/getgroups/getgroups03.c
testcases/kernel/syscalls/getgroups/getgroups04.c
testcases/kernel/syscalls/gethostid/gethostid01.c
testcases/kernel/syscalls/gethostname/gethostname01.c
testcases/kernel/syscalls/getitimer/getitimer01.c
testcases/kernel/syscalls/getitimer/getitimer02.c
testcases/kernel/syscalls/getitimer/getitimer03.c
testcases/kernel/syscalls/getpagesize/getpagesize01.c
testcases/kernel/syscalls/getpeername/getpeername01.c
testcases/kernel/syscalls/getpgid/getpgid01.c
testcases/kernel/syscalls/getpgid/getpgid02.c
testcases/kernel/syscalls/getpgrp/getpgrp01.c
testcases/kernel/syscalls/getpid/getpid01.c
testcases/kernel/syscalls/getpid/getpid02.c
testcases/kernel/syscalls/getppid/getppid01.c
testcases/kernel/syscalls/getppid/getppid02.c
testcases/kernel/syscalls/getpriority/getpriority01.c
testcases/kernel/syscalls/getpriority/getpriority02.c
testcases/kernel/syscalls/getresgid/getresgid01.c
testcases/kernel/syscalls/getresgid/getresgid02.c
testcases/kernel/syscalls/getresgid/getresgid03.c
testcases/kernel/syscalls/getresuid/getresuid01.c
testcases/kernel/syscalls/getresuid/getresuid02.c
testcases/kernel/syscalls/getresuid/getresuid03.c
testcases/kernel/syscalls/getrusage/getrusage01.c
testcases/kernel/syscalls/getrusage/getrusage02.c
testcases/kernel/syscalls/getsid/getsid01.c
testcases/kernel/syscalls/getsid/getsid02.c
testcases/kernel/syscalls/getsockname/getsockname01.c
testcases/kernel/syscalls/getsockopt/getsockopt01.c
testcases/kernel/syscalls/gettid/gettid01.c
testcases/kernel/syscalls/gettimeofday/gettimeofday01.c
testcases/kernel/syscalls/gettimeofday/gettimeofday02.c
testcases/kernel/syscalls/getuid/getuid01.c
testcases/kernel/syscalls/getuid/getuid02.c
testcases/kernel/syscalls/inotify/inotify01.c
testcases/kernel/syscalls/inotify/inotify02.c
testcases/kernel/syscalls/inotify/inotify03.c
testcases/kernel/syscalls/inotify_init/inotify_init1_01.c
testcases/kernel/syscalls/inotify_init/inotify_init1_02.c
testcases/kernel/syscalls/io_cancel/io_cancel01.c
testcases/kernel/syscalls/io_destroy/io_destroy01.c
testcases/kernel/syscalls/io_getevents/io_getevents01.c
testcases/kernel/syscalls/io_setup/io_setup01.c
testcases/kernel/syscalls/io_submit/io_submit01.c
testcases/kernel/syscalls/ioctl/ioctl01.c
testcases/kernel/syscalls/ioctl/ioctl02.c
testcases/kernel/syscalls/ioperm/ioperm01.c
testcases/kernel/syscalls/ioperm/ioperm02.c
testcases/kernel/syscalls/iopl/iopl01.c
testcases/kernel/syscalls/iopl/iopl02.c
testcases/kernel/syscalls/ipc/msgctl/msgctl01.c
testcases/kernel/syscalls/ipc/msgctl/msgctl02.c
testcases/kernel/syscalls/ipc/msgctl/msgctl03.c
testcases/kernel/syscalls/ipc/msgctl/msgctl04.c
testcases/kernel/syscalls/ipc/msgctl/msgctl05.c
testcases/kernel/syscalls/ipc/msgctl/msgctl08.c
testcases/kernel/syscalls/ipc/msgctl/msgctl09.c
testcases/kernel/syscalls/ipc/msgctl/msgctl10.c
testcases/kernel/syscalls/ipc/msgctl/msgctl11.c
testcases/kernel/syscalls/ipc/msgget/msgget01.c
testcases/kernel/syscalls/ipc/msgget/msgget02.c
testcases/kernel/syscalls/ipc/msgget/msgget03.c
testcases/kernel/syscalls/ipc/msgget/msgget04.c
testcases/kernel/syscalls/ipc/msgrcv/msgrcv01.c
testcases/kernel/syscalls/ipc/msgrcv/msgrcv02.c
testcases/kernel/syscalls/ipc/msgrcv/msgrcv03.c
testcases/kernel/syscalls/ipc/msgrcv/msgrcv04.c
testcases/kernel/syscalls/ipc/msgrcv/msgrcv05.c
testcases/kernel/syscalls/ipc/msgrcv/msgrcv06.c
testcases/kernel/syscalls/ipc/msgsnd/msgsnd01.c
testcases/kernel/syscalls/ipc/msgsnd/msgsnd02.c
testcases/kernel/syscalls/ipc/msgsnd/msgsnd03.c
testcases/kernel/syscalls/ipc/msgsnd/msgsnd04.c
testcases/kernel/syscalls/ipc/msgsnd/msgsnd05.c
testcases/kernel/syscalls/ipc/msgsnd/msgsnd06.c
testcases/kernel/syscalls/ipc/semctl/semctl01.c
testcases/kernel/syscalls/ipc/semctl/semctl02.c
testcases/kernel/syscalls/ipc/semctl/semctl03.c
testcases/kernel/syscalls/ipc/semctl/semctl04.c
testcases/kernel/syscalls/ipc/semctl/semctl05.c
testcases/kernel/syscalls/ipc/semctl/semctl06.c
testcases/kernel/syscalls/ipc/semget/semget01.c
testcases/kernel/syscalls/ipc/semget/semget02.c
testcases/kernel/syscalls/ipc/semget/semget03.c
testcases/kernel/syscalls/ipc/semget/semget05.c
testcases/kernel/syscalls/ipc/semget/semget06.c
testcases/kernel/syscalls/ipc/semop/semop01.c
testcases/kernel/syscalls/ipc/semop/semop02.c
testcases/kernel/syscalls/ipc/semop/semop03.c
testcases/kernel/syscalls/ipc/semop/semop04.c
testcases/kernel/syscalls/ipc/semop/semop05.c
testcases/kernel/syscalls/ipc/shmat/shmat01.c
testcases/kernel/syscalls/ipc/shmat/shmat02.c
testcases/kernel/syscalls/ipc/shmat/shmat03.c
testcases/kernel/syscalls/ipc/shmctl/shmctl01.c
testcases/kernel/syscalls/ipc/shmctl/shmctl02.c
testcases/kernel/syscalls/ipc/shmctl/shmctl03.c
testcases/kernel/syscalls/ipc/shmctl/shmctl04.c
testcases/kernel/syscalls/ipc/shmdt/shmdt01.c
testcases/kernel/syscalls/ipc/shmdt/shmdt02.c
testcases/kernel/syscalls/ipc/shmget/shmget01.c
testcases/kernel/syscalls/ipc/shmget/shmget02.c
testcases/kernel/syscalls/ipc/shmget/shmget03.c
testcases/kernel/syscalls/ipc/shmget/shmget04.c
testcases/kernel/syscalls/ipc/shmget/shmget05.c
testcases/kernel/syscalls/keyctl/keyctl01.c
testcases/kernel/syscalls/kill/kill01.c
testcases/kernel/syscalls/kill/kill03.c
testcases/kernel/syscalls/kill/kill04.c
testcases/kernel/syscalls/kill/kill05.c
testcases/kernel/syscalls/kill/kill06.c
testcases/kernel/syscalls/kill/kill07.c
testcases/kernel/syscalls/kill/kill08.c
testcases/kernel/syscalls/kill/kill11.c
testcases/kernel/syscalls/lchown/lchown01.c
testcases/kernel/syscalls/lchown/lchown02.c
testcases/kernel/syscalls/linkat/linkat01.c
testcases/kernel/syscalls/listen/listen01.c
testcases/kernel/syscalls/llseek/llseek01.c
testcases/kernel/syscalls/llseek/llseek02.c
testcases/kernel/syscalls/lseek/lseek06.c
testcases/kernel/syscalls/lseek/lseek07.c
testcases/kernel/syscalls/lseek/lseek08.c
testcases/kernel/syscalls/lseek/lseek09.c
testcases/kernel/syscalls/lseek/lseek10.c
testcases/kernel/syscalls/lstat/lstat01.c
testcases/kernel/syscalls/lstat/lstat02.c
testcases/kernel/syscalls/lstat/lstat03.c
testcases/kernel/syscalls/mbind/mbind01.c
testcases/kernel/syscalls/mkdir/mkdir01.c
testcases/kernel/syscalls/mkdir/mkdir02.c
testcases/kernel/syscalls/mkdir/mkdir03.c
testcases/kernel/syscalls/mkdir/mkdir04.c
testcases/kernel/syscalls/mkdir/mkdir05.c
testcases/kernel/syscalls/mkdir/mkdir08.c
testcases/kernel/syscalls/mkdirat/mkdirat01.c
testcases/kernel/syscalls/mknod/mknod02.c
testcases/kernel/syscalls/mknod/mknod03.c
testcases/kernel/syscalls/mknod/mknod04.c
testcases/kernel/syscalls/mknod/mknod05.c
testcases/kernel/syscalls/mknod/mknod06.c
testcases/kernel/syscalls/mknod/mknod07.c
testcases/kernel/syscalls/mknod/mknod08.c
testcases/kernel/syscalls/mknod/mknod09.c
testcases/kernel/syscalls/mknodat/mknodat01.c
testcases/kernel/syscalls/mmap/mmap001.c
testcases/kernel/syscalls/mmap/mmap01.c
testcases/kernel/syscalls/mmap/mmap02.c
testcases/kernel/syscalls/mmap/mmap03.c
testcases/kernel/syscalls/mmap/mmap04.c
testcases/kernel/syscalls/mmap/mmap05.c
testcases/kernel/syscalls/mmap/mmap06.c
testcases/kernel/syscalls/mmap/mmap07.c
testcases/kernel/syscalls/mmap/mmap08.c
testcases/kernel/syscalls/mmap/mmap09.c
testcases/kernel/syscalls/modify_ldt/modify_ldt01.c
testcases/kernel/syscalls/modify_ldt/modify_ldt02.c
testcases/kernel/syscalls/mount/mount01.c
testcases/kernel/syscalls/mount/mount02.c
testcases/kernel/syscalls/mount/mount03.c
testcases/kernel/syscalls/mprotect/mprotect01.c
testcases/kernel/syscalls/mprotect/mprotect02.c
testcases/kernel/syscalls/mprotect/mprotect03.c
testcases/kernel/syscalls/mq_notify/mq_notify01.c
testcases/kernel/syscalls/mq_open/mq_open01.c
testcases/kernel/syscalls/mq_timedreceive/mq_timedreceive01.c
testcases/kernel/syscalls/mq_timedsend/mq_timedsend01.c
testcases/kernel/syscalls/mq_unlink/mq_unlink01.c
testcases/kernel/syscalls/mremap/mremap01.c
testcases/kernel/syscalls/mremap/mremap02.c
testcases/kernel/syscalls/mremap/mremap03.c
testcases/kernel/syscalls/mremap/mremap04.c
testcases/kernel/syscalls/msync/msync01.c
testcases/kernel/syscalls/msync/msync02.c
testcases/kernel/syscalls/msync/msync03.c
testcases/kernel/syscalls/msync/msync04.c
testcases/kernel/syscalls/msync/msync05.c
testcases/kernel/syscalls/munmap/munmap01.c
testcases/kernel/syscalls/munmap/munmap02.c
testcases/kernel/syscalls/munmap/munmap03.c
testcases/kernel/syscalls/nanosleep/nanosleep01.c
testcases/kernel/syscalls/nanosleep/nanosleep02.c
testcases/kernel/syscalls/nanosleep/nanosleep03.c
testcases/kernel/syscalls/nanosleep/nanosleep04.c
testcases/kernel/syscalls/newuname/newuname01.c
testcases/kernel/syscalls/nice/nice01.c
testcases/kernel/syscalls/nice/nice02.c
testcases/kernel/syscalls/nice/nice03.c
testcases/kernel/syscalls/nice/nice04.c
testcases/kernel/syscalls/open/open01.c
testcases/kernel/syscalls/open/open02.c
testcases/kernel/syscalls/open/open03.c
testcases/kernel/syscalls/open/open04.c
testcases/kernel/syscalls/open/open05.c
testcases/kernel/syscalls/open/open06.c
testcases/kernel/syscalls/open/open07.c
testcases/kernel/syscalls/open/open08.c
testcases/kernel/syscalls/open/open10.c
testcases/kernel/syscalls/openat/openat01.c
testcases/kernel/syscalls/pathconf/pathconf01.c
testcases/kernel/syscalls/pause/pause01.c
testcases/kernel/syscalls/pause/pause02.c
testcases/kernel/syscalls/pause/pause03.c
testcases/kernel/syscalls/personality/personality01.c
testcases/kernel/syscalls/personality/personality02.c
testcases/kernel/syscalls/pipe/pipe01.c
testcases/kernel/syscalls/pipe/pipe02.c
testcases/kernel/syscalls/pipe/pipe03.c
testcases/kernel/syscalls/pipe/pipe04.c
testcases/kernel/syscalls/pipe/pipe05.c
testcases/kernel/syscalls/pipe/pipe06.c
testcases/kernel/syscalls/pipe/pipe07.c
testcases/kernel/syscalls/pipe/pipe08.c
testcases/kernel/syscalls/pipe/pipe09.c
testcases/kernel/syscalls/pipe/pipe10.c
testcases/kernel/syscalls/pipe/pipe11.c
testcases/kernel/syscalls/pipe2/pipe2_01.c
testcases/kernel/syscalls/pipe2/pipe2_02.c
testcases/kernel/syscalls/poll/poll01.c
testcases/kernel/syscalls/prctl/prctl01.c
testcases/kernel/syscalls/prctl/prctl02.c
testcases/kernel/syscalls/pread/pread01.c
testcases/kernel/syscalls/pread/pread02.c
testcases/kernel/syscalls/pread/pread03.c
testcases/kernel/syscalls/ptrace/ptrace01.c
testcases/kernel/syscalls/ptrace/ptrace02.c
testcases/kernel/syscalls/ptrace/ptrace03.c
testcases/kernel/syscalls/pwrite/pwrite01.c
testcases/kernel/syscalls/pwrite/pwrite02.c
testcases/kernel/syscalls/pwrite/pwrite03.c
testcases/kernel/syscalls/read/read01.c
testcases/kernel/syscalls/read/read02.c
testcases/kernel/syscalls/read/read03.c
testcases/kernel/syscalls/read/read04.c
testcases/kernel/syscalls/readdir/readdir02.c
testcases/kernel/syscalls/readlink/readlink01.c
testcases/kernel/syscalls/readlink/readlink02.c
testcases/kernel/syscalls/readlink/readlink03.c
testcases/kernel/syscalls/readlink/readlink04.c
testcases/kernel/syscalls/readlinkat/readlinkat01.c
testcases/kernel/syscalls/readv/readv01.c
testcases/kernel/syscalls/readv/readv02.c
testcases/kernel/syscalls/readv/readv03.c
testcases/kernel/syscalls/reboot/reboot01.c
testcases/kernel/syscalls/reboot/reboot02.c
testcases/kernel/syscalls/recv/recv01.c
testcases/kernel/syscalls/recvfrom/recvfrom01.c
testcases/kernel/syscalls/recvmsg/recvmsg01.c
testcases/kernel/syscalls/remap_file_pages/remap_file_pages01.c
testcases/kernel/syscalls/remap_file_pages/remap_file_pages02.c
testcases/kernel/syscalls/rename/rename01.c
testcases/kernel/syscalls/rename/rename02.c
testcases/kernel/syscalls/rename/rename03.c
testcases/kernel/syscalls/rename/rename04.c
testcases/kernel/syscalls/rename/rename05.c
testcases/kernel/syscalls/rename/rename06.c
testcases/kernel/syscalls/rename/rename07.c
testcases/kernel/syscalls/rename/rename08.c
testcases/kernel/syscalls/rename/rename09.c
testcases/kernel/syscalls/rename/rename10.c
testcases/kernel/syscalls/rename/rename12.c
testcases/kernel/syscalls/rename/rename13.c
testcases/kernel/syscalls/rename/rename14.c
testcases/kernel/syscalls/renameat/renameat01.c
testcases/kernel/syscalls/rmdir/rmdir01.c
testcases/kernel/syscalls/rmdir/rmdir02.c
testcases/kernel/syscalls/rmdir/rmdir03.c
testcases/kernel/syscalls/rmdir/rmdir04.c
testcases/kernel/syscalls/rt_sigaction/rt_sigaction01.c
testcases/kernel/syscalls/rt_sigaction/rt_sigaction02.c
testcases/kernel/syscalls/rt_sigaction/rt_sigaction03.c
testcases/kernel/syscalls/rt_sigprocmask/rt_sigprocmask01.c
testcases/kernel/syscalls/rt_sigprocmask/rt_sigprocmask02.c
testcases/kernel/syscalls/rt_sigsuspend/rt_sigsuspend01.c
testcases/kernel/syscalls/sched_get_priority_max/sched_get_priority_max01.c
testcases/kernel/syscalls/sched_get_priority_max/sched_get_priority_max02.c
testcases/kernel/syscalls/sched_get_priority_min/sched_get_priority_min01.c
testcases/kernel/syscalls/sched_get_priority_min/sched_get_priority_min02.c
testcases/kernel/syscalls/sched_getaffinity/sched_getaffinity01.c
testcases/kernel/syscalls/sched_getparam/sched_getparam01.c
testcases/kernel/syscalls/sched_getparam/sched_getparam02.c
testcases/kernel/syscalls/sched_getparam/sched_getparam03.c
testcases/kernel/syscalls/sched_getscheduler/sched_getscheduler01.c
testcases/kernel/syscalls/sched_getscheduler/sched_getscheduler02.c
testcases/kernel/syscalls/sched_rr_get_interval/sched_rr_get_interval01.c
testcases/kernel/syscalls/sched_rr_get_interval/sched_rr_get_interval02.c
testcases/kernel/syscalls/sched_rr_get_interval/sched_rr_get_interval03.c
testcases/kernel/syscalls/sched_setparam/sched_setparam01.c
testcases/kernel/syscalls/sched_setparam/sched_setparam02.c
testcases/kernel/syscalls/sched_setparam/sched_setparam03.c
testcases/kernel/syscalls/sched_setparam/sched_setparam04.c
testcases/kernel/syscalls/sched_setparam/sched_setparam05.c
testcases/kernel/syscalls/sched_setscheduler/sched_setscheduler01.c
testcases/kernel/syscalls/sched_setscheduler/sched_setscheduler02.c
testcases/kernel/syscalls/sched_yield/sched_yield01.c
testcases/kernel/syscalls/send/send01.c
testcases/kernel/syscalls/sendfile/sendfile02.c
testcases/kernel/syscalls/sendfile/sendfile03.c
testcases/kernel/syscalls/sendfile/sendfile04.c
testcases/kernel/syscalls/sendfile/sendfile05.c
testcases/kernel/syscalls/sendfile/sendfile06.c
testcases/kernel/syscalls/sendfile/sendfile07.c
testcases/kernel/syscalls/sendmsg/sendmsg01.c
testcases/kernel/syscalls/sendto/sendto01.c
testcases/kernel/syscalls/set_robust_list/set_robust_list01.c
testcases/kernel/syscalls/set_thread_area/set_thread_area01.c
testcases/kernel/syscalls/set_thread_area/set_thread_area02.c
testcases/kernel/syscalls/set_tid_address/set_tid_address01.c
testcases/kernel/syscalls/setdomainname/setdomainname02.c
testcases/kernel/syscalls/setdomainname/setdomainname03.c
testcases/kernel/syscalls/setfsgid/setfsgid01.c
testcases/kernel/syscalls/setfsgid/setfsgid02.c
testcases/kernel/syscalls/setfsgid/setfsgid03.c
testcases/kernel/syscalls/setfsuid/setfsuid01.c
testcases/kernel/syscalls/setfsuid/setfsuid02.c
testcases/kernel/syscalls/setfsuid/setfsuid03.c
testcases/kernel/syscalls/setfsuid/setfsuid04.c
testcases/kernel/syscalls/setgid/setgid01.c
testcases/kernel/syscalls/setgid/setgid02.c
testcases/kernel/syscalls/setgid/setgid03.c
testcases/kernel/syscalls/setgroups/setgroups02.c
testcases/kernel/syscalls/setgroups/setgroups03.c
testcases/kernel/syscalls/setgroups/setgroups04.c
testcases/kernel/syscalls/setitimer/setitimer01.c
testcases/kernel/syscalls/setitimer/setitimer02.c
testcases/kernel/syscalls/setitimer/setitimer03.c
testcases/kernel/syscalls/setpgid/setpgid01.c
testcases/kernel/syscalls/setpgid/setpgid02.c
testcases/kernel/syscalls/setpgid/setpgid03.c
testcases/kernel/syscalls/setpgrp/setpgrp02.c
testcases/kernel/syscalls/setpriority/setpriority01.c
testcases/kernel/syscalls/setpriority/setpriority02.c
testcases/kernel/syscalls/setpriority/setpriority03.c
testcases/kernel/syscalls/setpriority/setpriority04.c
testcases/kernel/syscalls/setpriority/setpriority05.c
testcases/kernel/syscalls/setregid/setregid01.c
testcases/kernel/syscalls/setregid/setregid02.c
testcases/kernel/syscalls/setregid/setregid03.c
testcases/kernel/syscalls/setregid/setregid04.c
testcases/kernel/syscalls/setresuid/setresuid04.c
testcases/kernel/syscalls/setreuid/setreuid01.c
testcases/kernel/syscalls/setreuid/setreuid07.c
testcases/kernel/syscalls/setrlimit/setrlimit01.c
testcases/kernel/syscalls/setrlimit/setrlimit02.c
testcases/kernel/syscalls/setrlimit/setrlimit03.c
testcases/kernel/syscalls/setsid/setsid01.c
testcases/kernel/syscalls/setsockopt/setsockopt01.c
testcases/kernel/syscalls/setuid/setuid02.c
testcases/kernel/syscalls/setuid/setuid03.c
testcases/kernel/syscalls/setuid/setuid04.c
testcases/kernel/syscalls/sgetmask/sgetmask01.c
testcases/kernel/syscalls/sigaction/sigaction01.c
testcases/kernel/syscalls/sigaction/sigaction02.c
testcases/kernel/syscalls/sigaltstack/sigaltstack01.c
testcases/kernel/syscalls/sigaltstack/sigaltstack02.c
testcases/kernel/syscalls/signal/signal02.c
testcases/kernel/syscalls/signal/signal03.c
testcases/kernel/syscalls/signal/signal04.c
testcases/kernel/syscalls/signal/signal05.c
testcases/kernel/syscalls/signalfd4/signalfd4_01.c
testcases/kernel/syscalls/signalfd4/signalfd4_02.c
testcases/kernel/syscalls/sigprocmask/sigprocmask01.c
testcases/kernel/syscalls/sigsuspend/sigsuspend01.c
testcases/kernel/syscalls/socket/socket01.c
testcases/kernel/syscalls/socket/socket02.c
testcases/kernel/syscalls/socket/socket03.c
testcases/kernel/syscalls/socketpair/socketpair01.c
testcases/kernel/syscalls/socketpair/socketpair02.c
testcases/kernel/syscalls/sockioctl/sockioctl01.c
testcases/kernel/syscalls/splice/splice02.c
testcases/kernel/syscalls/ssetmask/ssetmask01.c
testcases/kernel/syscalls/stat/stat01.c
testcases/kernel/syscalls/stat/stat02.c
testcases/kernel/syscalls/stat/stat03.c
testcases/kernel/syscalls/stat/stat05.c
testcases/kernel/syscalls/statfs/statfs01.c
testcases/kernel/syscalls/statfs/statfs02.c
testcases/kernel/syscalls/statfs/statfs03.c
testcases/kernel/syscalls/statvfs/statvfs01.c
testcases/kernel/syscalls/stime/stime01.c
testcases/kernel/syscalls/stime/stime02.c
testcases/kernel/syscalls/swapoff/swapoff01.c
testcases/kernel/syscalls/swapoff/swapoff02.c
testcases/kernel/syscalls/swapon/swapon01.c
testcases/kernel/syscalls/swapon/swapon02.c
testcases/kernel/syscalls/swapon/swapon03.c
testcases/kernel/syscalls/symlink/symlink02.c
testcases/kernel/syscalls/symlink/symlink03.c
testcases/kernel/syscalls/symlink/symlink04.c
testcases/kernel/syscalls/symlink/symlink05.c
testcases/kernel/syscalls/symlinkat/symlinkat01.c
testcases/kernel/syscalls/sync/sync01.c
testcases/kernel/syscalls/sync/sync02.c
testcases/kernel/syscalls/sync_file_range/sync_file_range01.c
testcases/kernel/syscalls/sysctl/sysctl01.c
testcases/kernel/syscalls/sysctl/sysctl04.c
testcases/kernel/syscalls/sysctl/sysctl05.c
testcases/kernel/syscalls/sysinfo/sysinfo01.c
testcases/kernel/syscalls/sysinfo/sysinfo02.c
testcases/kernel/syscalls/tee/tee01.c
testcases/kernel/syscalls/time/time01.c
testcases/kernel/syscalls/time/time02.c
testcases/kernel/syscalls/timer_getoverrun/timer_getoverrun01.c
testcases/kernel/syscalls/timer_gettime/timer_gettime01.c
testcases/kernel/syscalls/timerfd/timerfd02.c
testcases/kernel/syscalls/timerfd/timerfd03.c
testcases/kernel/syscalls/times/times01.c
testcases/kernel/syscalls/tkill/tkill01.c
testcases/kernel/syscalls/tkill/tkill02.c
testcases/kernel/syscalls/truncate/truncate01.c
testcases/kernel/syscalls/truncate/truncate02.c
testcases/kernel/syscalls/truncate/truncate03.c
testcases/kernel/syscalls/truncate/truncate04.c
testcases/kernel/syscalls/umask/umask01.c
testcases/kernel/syscalls/umask/umask03.c
testcases/kernel/syscalls/uname/uname01.c
testcases/kernel/syscalls/uname/uname02.c
testcases/kernel/syscalls/uname/uname03.c
testcases/kernel/syscalls/unlink/unlink05.c
testcases/kernel/syscalls/unlinkat/unlinkat01.c
testcases/kernel/syscalls/unshare/unshare01.c
testcases/kernel/syscalls/unshare/unshare02.c
testcases/kernel/syscalls/ustat/ustat01.c
testcases/kernel/syscalls/ustat/ustat02.c
testcases/kernel/syscalls/utime/utime01.c
testcases/kernel/syscalls/utime/utime02.c
testcases/kernel/syscalls/utime/utime03.c
testcases/kernel/syscalls/utime/utime04.c
testcases/kernel/syscalls/utime/utime05.c
testcases/kernel/syscalls/utime/utime06.c
testcases/kernel/syscalls/utimes/utimes01.c
testcases/kernel/syscalls/vfork/vfork01.c
testcases/kernel/syscalls/vfork/vfork02.c
testcases/kernel/syscalls/vmsplice/vmsplice01.c
testcases/kernel/syscalls/wait/wait02.c
testcases/kernel/syscalls/wait4/wait401.c
testcases/kernel/syscalls/wait4/wait402.c
testcases/kernel/syscalls/waitid/waitid01.c
testcases/kernel/syscalls/waitid/waitid02.c
testcases/kernel/timers/clock_gettime/clock_gettime03.c
testcases/kernel/timers/clock_settime/clock_settime03.c
testcases/kernel/timers/timer_create/timer_create04.c
testcases/misc/math/float/exp_log/genmodf.c
testcases/misc/math/float/main.c
testcases/network/sockets/ltpServer.c
testcases/network/tcp_cmds/perf_lan/pingpong6.c
testcases/open_posix_testsuite/conformance/interfaces/clock_settime/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/clock_settime/5-2.c
testcases/open_posix_testsuite/conformance/interfaces/fork/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/munlockall/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/nanosleep/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_join/threads_scenarii.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_sigmask/18-1.c
testcases/open_posix_testsuite/conformance/interfaces/raise/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_getparam/4-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_getscheduler/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_rr_get_interval/3-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/2-2.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/23-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/23-5.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/9-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_close/3-2.c
testcases/open_posix_testsuite/conformance/interfaces/sem_init/3-2.c
testcases/open_posix_testsuite/conformance/interfaces/sigpending/1-3.c
testcases/open_posix_testsuite/conformance/interfaces/sigwait/8-1.c
testcases/open_posix_testsuite/conformance/interfaces/timer_gettime/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/timer_gettime/2-2.c
testcases/open_posix_testsuite/stress/threads/fork/s-c1.c
testcases/open_posix_testsuite/stress/threads/pthread_kill/stress.c
testcases/open_posix_testsuite/stress/threads/sem_getvalue/stress.c
43088e16aa60d69e3ec5a69cdd8bdd45b8891127 14-Dec-2010 Garrett Cooper <yanegomi@gmail.com> Merge branch 'master' of ssh://ltp.git.sourceforge.net/gitroot/ltp/ltp

Conflicts:
lib/parse_opts.c
testcases/Makefile
testcases/kernel/syscalls/lchown/lchown01.c
testcases/kernel/syscalls/lchown/lchown02.c
testcases/open_posix_testsuite/conformance/interfaces/aio_cancel/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/clock_settime/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/clock_settime/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/clock_settime/5-2.c
testcases/open_posix_testsuite/conformance/interfaces/fork/11-1.c
testcases/open_posix_testsuite/conformance/interfaces/fork/12-1.c
testcases/open_posix_testsuite/conformance/interfaces/fork/13-1.c
testcases/open_posix_testsuite/conformance/interfaces/fork/14-1.c
testcases/open_posix_testsuite/conformance/interfaces/fork/16-1.c
testcases/open_posix_testsuite/conformance/interfaces/fork/17-1.c
testcases/open_posix_testsuite/conformance/interfaces/fork/17-2.c
testcases/open_posix_testsuite/conformance/interfaces/fork/18-1.c
testcases/open_posix_testsuite/conformance/interfaces/fork/19-1.c
testcases/open_posix_testsuite/conformance/interfaces/fork/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/fork/21-1.c
testcases/open_posix_testsuite/conformance/interfaces/fork/22-1.c
testcases/open_posix_testsuite/conformance/interfaces/fork/6-1.c
testcases/open_posix_testsuite/conformance/interfaces/fork/7-1.c
testcases/open_posix_testsuite/conformance/interfaces/fork/8-1.c
testcases/open_posix_testsuite/conformance/interfaces/fork/9-1.c
testcases/open_posix_testsuite/conformance/interfaces/mlock/10-1.c
testcases/open_posix_testsuite/conformance/interfaces/mlock/12-1.c
testcases/open_posix_testsuite/conformance/interfaces/mlock/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/mlock/speculative/12-1.c
testcases/open_posix_testsuite/conformance/interfaces/mlockall/15-1.c
testcases/open_posix_testsuite/conformance/interfaces/mlockall/3-6.c
testcases/open_posix_testsuite/conformance/interfaces/mlockall/3-7.c
testcases/open_posix_testsuite/conformance/interfaces/mlockall/8-1.c
testcases/open_posix_testsuite/conformance/interfaces/mlockall/speculative/15-1.c
testcases/open_posix_testsuite/conformance/interfaces/mmap/18-1.c
testcases/open_posix_testsuite/conformance/interfaces/munlock/11-1.c
testcases/open_posix_testsuite/conformance/interfaces/munlock/7-1.c
testcases/open_posix_testsuite/conformance/interfaces/munlockall/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/nanosleep/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_atfork/1-2.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_atfork/2-2.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_atfork/3-2.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_atfork/3-3.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_atfork/4-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_getinheritsched/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_getschedpolicy/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_getscope/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_getstack/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_getstacksize/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setinheritsched/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setinheritsched/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setinheritsched/2-2.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setinheritsched/4-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setschedparam/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setschedparam/1-4.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setschedpolicy/4-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setschedpolicy/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setschedpolicy/speculative/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setscope/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setscope/4-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setscope/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstack/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstack/4-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstack/6-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstack/7-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstacksize/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstacksize/4-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_barrier_wait/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_barrierattr_getpshared/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_cancel/5-2.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_create/8-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/3-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_getschedparam/1-3.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_getschedparam/4-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_join/1-2.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_join/6-3.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_join/threads_scenarii.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_kill/1-2.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_kill/8-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_settype/3-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_settype/3-2.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_settype/3-3.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_settype/3-4.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_rdlock/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_rdlock/2-2.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_rdlock/2-3.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_unlock/3-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlockattr_init/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_setschedparam/1-2.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_setschedparam/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_sigmask/18-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_sigmask/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_sigmask/7-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_init/2-2.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_lock/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_unlock/3-1.c
testcases/open_posix_testsuite/conformance/interfaces/raise/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_max/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_max/1-2.c
testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_max/1-3.c
testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_max/1-4.c
testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_max/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_min/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_min/1-2.c
testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_min/1-3.c
testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_min/1-4.c
testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_min/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_getparam/3-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_getparam/4-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_getparam/6-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_getscheduler/3-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_getscheduler/4-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_getscheduler/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_getscheduler/7-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_rr_get_interval/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_rr_get_interval/3-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/10-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/2-2.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/20-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/21-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/21-2.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/23-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/23-2.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/23-3.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/23-4.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/23-5.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/23-6.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/23-7.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/25-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/25-2.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/25-3.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/25-4.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/26-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/27-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/9-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/15-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/15-2.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/16-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/17-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/17-2.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/17-6.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/17-7.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/19-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/19-2.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/19-3.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/19-4.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/19-5.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/20-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/21-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/22-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/22-2.c
testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/4-1.c
testcases/open_posix_testsuite/conformance/interfaces/sched_yield/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_close/3-2.c
testcases/open_posix_testsuite/conformance/interfaces/sem_destroy/3-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_init/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_init/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_init/2-2.c
testcases/open_posix_testsuite/conformance/interfaces/sem_init/3-2.c
testcases/open_posix_testsuite/conformance/interfaces/sem_init/3-3.c
testcases/open_posix_testsuite/conformance/interfaces/sem_init/7-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_open/1-3.c
testcases/open_posix_testsuite/conformance/interfaces/sem_open/1-4.c
testcases/open_posix_testsuite/conformance/interfaces/sem_open/10-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_open/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_open/3-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_post/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_post/1-2.c
testcases/open_posix_testsuite/conformance/interfaces/sem_post/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_post/4-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_post/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_post/6-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_post/8-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/11-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/2-2.c
testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/3-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/4-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/6-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/6-2.c
testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/9-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_unlink/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_unlink/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_unlink/2-2.c
testcases/open_posix_testsuite/conformance/interfaces/sem_unlink/3-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_unlink/6-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_unlink/7-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_unlink/9-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_wait/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_wait/1-2.c
testcases/open_posix_testsuite/conformance/interfaces/sem_wait/11-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_wait/12-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_wait/13-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_wait/3-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_wait/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/sem_wait/7-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/11-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/13-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/14-2.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/16-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/17-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/18-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/20-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/20-2.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/20-3.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/23-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/26-2.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/28-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/28-2.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/28-3.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/32-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/34-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_open/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_unlink/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_unlink/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_unlink/3-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_unlink/5-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_unlink/6-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_unlink/8-1.c
testcases/open_posix_testsuite/conformance/interfaces/shm_unlink/9-1.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-1.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-10.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-11.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-12.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-13.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-14.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-15.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-16.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-17.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-18.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-19.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-2.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-20.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-21.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-22.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-23.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-24.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-25.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-26.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-3.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-4.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-5.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-6.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-7.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-8.c
testcases/open_posix_testsuite/conformance/interfaces/sigaction/28-9.c
testcases/open_posix_testsuite/conformance/interfaces/sigpending/1-3.c
testcases/open_posix_testsuite/conformance/interfaces/sigqueue/12-1.c
testcases/open_posix_testsuite/conformance/interfaces/sigqueue/3-1.c
testcases/open_posix_testsuite/conformance/interfaces/sigwait/1-1.c
testcases/open_posix_testsuite/conformance/interfaces/sigwait/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/sigwait/3-1.c
testcases/open_posix_testsuite/conformance/interfaces/sigwait/4-1.c
testcases/open_posix_testsuite/conformance/interfaces/sigwait/6-2.c
testcases/open_posix_testsuite/conformance/interfaces/sigwait/8-1.c
testcases/open_posix_testsuite/conformance/interfaces/timer_gettime/1-4.c
testcases/open_posix_testsuite/conformance/interfaces/timer_gettime/2-1.c
testcases/open_posix_testsuite/conformance/interfaces/timer_gettime/2-2.c
testcases/open_posix_testsuite/functional/mqueues/send_rev_2.c
testcases/open_posix_testsuite/functional/semaphores/sem_lock.c
testcases/open_posix_testsuite/functional/threads/pi_test/pitest-5.c
testcases/open_posix_testsuite/functional/timers/clocks/invaliddates.c
testcases/open_posix_testsuite/functional/timers/clocks/twopsetclock.c
testcases/open_posix_testsuite/functional/timers/timers/twoevtimers.c
testcases/open_posix_testsuite/stress/mqueues/multi_send_rev_1.c
testcases/open_posix_testsuite/stress/mqueues/multi_send_rev_2.c
testcases/open_posix_testsuite/stress/semaphores/multi_con_pro.c
testcases/open_posix_testsuite/stress/threads/fork/s-c1.c
testcases/open_posix_testsuite/stress/threads/pthread_cancel/stress.c
testcases/open_posix_testsuite/stress/threads/pthread_getschedparam/stress.c
testcases/open_posix_testsuite/stress/threads/pthread_kill/stress.c
testcases/open_posix_testsuite/stress/threads/pthread_once/stress.c
testcases/open_posix_testsuite/stress/threads/sem_getvalue/stress.c
testcases/open_posix_testsuite/stress/threads/sem_init/s-c1.c
testcases/open_posix_testsuite/stress/threads/sem_open/s-c1.c
8fb1cdb0538640f295691929650408688537fb7f 29-Nov-2010 Garrett Cooper <yanegomi@gmail.com> More style cleanup.

Do a better job at detecting spurious leading and trailing whitespace in
branches and loop statements.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
idns04.c
idns13.c
df3eb16e38c6a163b0a7367c885679eed6140964 29-Nov-2010 Garrett Cooper <yanegomi@gmail.com> Deal with a lot of annoying style nits.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
idns01.c
idns04.c
cb2dde72abe0234d1ff7f0a7b601989feae0df8c 11-Nov-2010 Garrett Cooper <yanegomi@gmail.com> Use relative path to mqueue to avoid EACCES.

I wish people could understand that some tests should be run as root.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
idns31.c
b47b875e00fbea4bb3398ac2f3ef4b4dd32826f0 16-Aug-2010 Subrata Modak <subratamodak@subratamodak.linux.ibm.com> drop test pidns03 ?
I am not sure about the original intent of pidns03 test case but I think the test is expected to fail :-( The header for this test says:
* Verify that:
* 1. When parent, clone a process with flag CLONE_NEWPID, see the
* process id of the parent is existing after mounting /proc

The test passes in the parent-pid from init-pid-ns and looks for that pid in the child's mount of /proc. But for the CLONE_NEWPID child, parent process should appear to have a pid == 0. The pid of the parent in the initial pid namespace must NOT be visible to the child - in fact a different process can have that pid.
I am not surprised the test fails - I am curious to know the version of the kernel when this test reliably passed - if at all. I tried this on 2.6.29 and 2.6.34-rc5 and it fails reliably.
I dug through my history and see that this test was part of a 6-patch set, We did have some comments on the coding style on the set, but we seem to have missed the intent of this test :-(.
Do we have any other history of this test ? If not, I think we should either drop the test or modify the test to verify the opposite (i.e. verify that the opendir() in the test fails with ENOENT). Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>, Signed-off-by: Subrata Modak <subrata@linux.vnet.ibm.com>,
idns03.c
unpidnstest.sh
5936767b86201d8409bb62a74770e60de1796adc 29-Apr-2010 Rishikesh K Rajak <risrajak@linux.vnet.ibm.com> pidns30 fix

Signed-off-by: Serge Hallyn <serue@us.ibm.com>
Acked-by: Garrett Cooper <yanegomi@gmail.com>
idns30.c
df4e7fb7d5ab2c505b6104bf88594b64209a8369 24-Feb-2010 Rishikesh K Rajak <risrajak@linux.vnet.ibm.com> For running container testcase smoothly on older distro, these changes are required
for now, looking for better solution once i go through all the latest changes.

Signed-off By: Rishikesh K Rajak <risrajak@linux.vnet.ibm.com>
heck_pidns_enabled.c
622eb54f68e8e854cb80fc25d624cb417cfcc163 23-Feb-2010 Garrett Cooper <yanegomi@gmail.com> Reviving check_pidns_enabled test.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
heck_pidns_enabled.c
c2c8d7f6d8d77f9755a919bf8fdd858ba4c9fbdb 22-Feb-2010 root <root@orangebox.(none)> Detecting potential fork errors in the test.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
idns17.c
8686ad72fbe76a7de8fe8e93ef68a71fff8a049d 15-Feb-2010 gcooper <gcooper@orangebox.(none)> Correctly consolidate tst_exit() calls in cleanup() as noted by
Mitani-san.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
idns17.c
7f140ab215a66e7ed9a195591b756cf6cdfde38c 06-Dec-2009 yaberauneya <yaberauneya> Polish up clean logic a bit further. Later versions of gcc (rightfully) whine more about function attributes, et all.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
idns01.c
idns02.c
idns03.c
idns04.c
idns10.c
idns17.c
6aa2737d5de9256fcdb5b68a6aa6b12249005049 06-Dec-2009 yaberauneya <yaberauneya> Older versions of binutils / gcc don't properly grok the weak symbols solution I put in before the 200911 release, so instead implement the code using a preprocessor define (CLEANUP), which can be defined before including cleanup.c, and thus the user can specify what cleanup function they wish to use before it's defined.

This works on Ubuntu 6.02 (dapper drake) with gcc 4.0 and binutils 2.16.9, but I'm not sure if it works with older tools, as I couldn't hunt down older distro sources...

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
idns01.c
c5d8805b5dc5cf79b729ff3b60617649e2f9ea0c 30-Nov-2009 yaberauneya <yaberauneya> Checkin all local changes for testcases/kernel/controllers to avoid compile-time warnings and errors, so that I can move forward with the weak handlers change.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
idns04.c
idns10.c
idns17.c
3e8f77bfe4f8a1b620c736ca11e5ffc895b468fd 15-Nov-2009 yaberauneya <yaberauneya> 1. Linker ordering is painful; -lltp must come last for some weird arse reason in order to work with binutils 1.19.51, whereas it needs to precede -lclone on 1.18.. We'll see whether or not it's fubar still in a minute...
2. Not all of the mq_* functions are syscalls; many are in fact libcalls, so we need to use the appropriate function call to stimulate them.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
akefile
idns30.c
idns31.c
be3fdcfb86982af9836b5ffea136a3a65c12d718 14-Nov-2009 yaberauneya <yaberauneya> Use linux_syscall_numbers.h instead of the syscalls. Need to add the __NR_ defs to the .in files still.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
idns30.c
idns31.c
5b9263caaa867a155be5c79f26d32ec577a3d846 11-Nov-2009 subrata_modak <subrata_modak> Removal of this testcase and it's reference as per "Serge E. Hallyn" <serue@us.ibm.com> suggestion: The patch in question is upstream, so pidns21.c will always fail and should be removed from ltp. It's worth testing that the container init survives SIGUSR1 from a child, but whether it survives or dies from a parent we don't particularly care.
idns21.c
unpidnstest.sh
f6d7f09ea8353429d488f586ff9cd9525699e31c 03-Nov-2009 vapier <vapier> define and use common clone helpers

From: Serge E. Hallyn <serue@us.ibm.com>

Define ltp_clone() and related helpers in libltp, and convert all existing
clone usages to them. This way we no longer have arch-specific cruft
cluttering up random source files all over the place.
akefile
idns12.c
idns13.c
idns16.c
idns20.c
idns21.c
idns30.c
idns31.c
ef77253961f909f87e82e6d2b620e87af33e9665 09-Oct-2009 yaberauneya <yaberauneya> 1. Please see README.mk-devel for a full description of the changes
from a Make perspective.
2. Several files were changed to accomodate correct installation
practices, most notably ones in testcases/network/{ipv6,tcp_cmds},
testcases/kernel/sched/hyperthreading/ht_enabled/..., and some items
in tools/..., and also to avoid collisions as far as installed
testcases (scripts, compiled C apps) were concerned.
3. Several apps weren't autoconf safe and some autoconf tests and
conditional statements have been placed in sourcecode and in Makefiles
to either a) prevent the tests from being built / installed or b) turn
the tests into dummy apps which print out TCONF messages due to
lack-of-build support.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
akefile
heck_pidns_enabled.c
f17ac84cca81829c4588e59b42495b8aea0fa362 07-Sep-2009 subrata_modak <subrata_modak> Formatting and ftest cleanup: This is first part of testcases/kernel/fs/ftest/ cleanup. It fixes printf like formatting in pidns20.c and growfiles.c as well as huge number of bugs and code formatting issues in ftest01.c ftest02.c and ftest03.c. Signed-off-by: Cyril Hrubis <chrubis@suse.cz>.
idns20.c
61fc16a318e58a90d42ccfc156316eaa701935a3 05-Aug-2009 subrata_modak <subrata_modak> Remove pidns14 test case reference: pidns14 test case is removed in the July 2009 LTP release. So remove the reference to pidns14 test case in the runpidnstest.sh script. Signed-off-by: M. Mohan Kumar <mohan@in.ibm.com>.
unpidnstest.sh
988a38bc64b11eba027ad2354812678bc2d33eec 03-Aug-2009 subrata_modak <subrata_modak> Fixed static build which needs to link the pthread library in pidns and pipeio. Signed-off-by: nobuhiro <nobuhiro@andestech.com>. Matt Helsley <matthltc@us.ibm.com> replied: I'm not sure this is correct. I just did a CVS update and grepped for "pthread". I don't see a single use of pthreads in there. What output suggested all of these tests need to link to pthreads? Could you at least stick that in the changelog? Regardless, I'm satisfied with the patch itself. As I said before the changelog would be nicer if it included a snippet of the output that justifies it (included here for convenience): When static linking, the pthread stuff is due to the undefined pthread symbols in librt.a and libgcc_eh.a.
make[4]: Entering directory `/home/nobuhiro/git_repo/os/ltp/testcases/kernel/ipc/pipeio'
cc -Wall -static -Wall -I../../../../include pipeio.c -L../../../../lib -lltp -lrt -o pipeio
/usr/lib/gcc/x86_64-pc-linux-gnu/4.3.3/../../../../lib64/librt.a(aio_suspend.o):
In function `cleanup': (.text+0xa): undefined reference to `pthread_mutex_lock'.
akefile
a4e534cccb013f196f7363e4a157bfd046e82c8b 08-Jul-2009 subrata_modak <subrata_modak> Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>, "Serge E. Hallyn" <serue@us.ibm.com> & "M. Mohan Kumar" <mohan@in.ibm.com> wanted to get this removed.
idns14.c
77bb65c1fbbac9d474ebad7898989e2d509b6b14 18-Jun-2009 subrata_modak <subrata_modak> pidns17 testcase bugfix/cleanup: Fix minor bugs in the test case that cause the test to fail intermittently. Also, print more debug info when test fails. This fixes a bug reported by Sachin P. Sant. Signed-off-by: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>.
idns17.c
88c166cc3a4f0720e3f723613789ced23db286c6 09-Jun-2009 subrata_modak <subrata_modak> Test library cleanups: Removing no longer used code from test.h eg. test_error.c is no longer in ltp, and the same for t_res.c so there is no need to include function prototypes for these. Adding void to functions that doesn't take any parameters; tst_exit() -> tst_exit(void); so code that pases parameters to these is not compileable any more. Also fixes all test broken by that change. As parameters passed to tst_exit() are ignored anyway it's quite safe to just remove them; but I'would rather see someone take a closer look. Code cleanups and fixes in tst_res.c:
* removed trivial and useless comments,
* cleaned coding style,
* and much more,
TODO: there is much redundant code in tst_res.c I'll eliminate that by static functions. Signed-off-by: chrubis@suse.cz.
idns30.c
idns31.c
c6ca86ccbd2f68b84beb485ab71c66990f280251 26-May-2009 subrata_modak <subrata_modak> Fix sync problem between two processes of pidns12 test: The child-process wait SIGUSR1 which would be sended by parent-process, if the child-process execute sigtimedwait() after parent-process send the signal, it would never receive the SIGUSR1 from parent-process. This patch rewrite child_signal_handler() to handle to SIGUSR1 and instead sigtimedwait() with sleep for 3 seconds. Signed-off-by: Gui Xiaohua <guixh@cn.fujitsu.com>.
idns12.c
85576650bc5be0e5a0e339567679bcd5c0e59477 26-Feb-2009 subrata_modak <subrata_modak> Containers: Remove capability dependency: Review of these test source files suggests that absolutley no capability APIs are in use. I suspect these #ifdefs were added because the original tests had unnecessarily included sys/capability.h. Signed-off-by: Matt Helsley <matthltc@us.ibm.com>.
idns14.c
idns16.c
4bb656a129f7507823e9e6d6b98b1a02fd80ef89 26-Feb-2009 subrata_modak <subrata_modak> Clear Trailing Whitespace. Signed-off-by: Michal Simek <monstr@monstr.eu>.
idns04.c
ce23f15806425582250d38d41a02b1a547a32d7b 19-Jan-2009 subrata_modak <subrata_modak> Seiichi Ikarashi reported:: I report ia64-specific build failures and a patch for them. Since ia64 glibc does not have the clone() function call, building testcases/kernel/containers/pidns/pidns12.c fails as follows. It's same for pidns13.c, pidns14.c, pidns16.c, pidns20.c, pidns21.c, pidns30.c, and pidns31.c. They should call clone2() instead of clone(), like check_pidns_enabled.c. I attached a patch to fix them. Signed-Off-By: Seiichi Ikarashi <s.ikarashi@jp.fujitsu.com>. Complete mail thread: http://marc.info/?l=ltp-list&m=123232695003986&w=2.
heck_pidns_enabled.c
idns12.c
idns13.c
idns14.c
idns16.c
idns20.c
idns21.c
idns30.c
idns31.c
4235284d3c348a7ede6c68093d4104396d355e28 08-Jan-2009 subrata_modak <subrata_modak> checking sys/capability.c for pidns14 and pidns16: this patch adds "sys/capability.c" checking for pidns14 and pidns16 testcases using autoconf support. Signed-off-by: Edjunior B. Machado <emachado@linux.vnet.ibm.com>.
idns14.c
idns16.c
15052009c7a1b5584e4ac54cadd783f07c2808a8 05-Jan-2009 subrata_modak <subrata_modak> Please find a patch to fix the sigsegv error on pidns13.c on containers. Signed-off-by: Veerendra C <veerendrac@in.ibm.com>.
idns13.c
e794297b85b902d5160c88f542da248702e49b37 18-Dec-2008 subrata_modak <subrata_modak> Please accept below testcase patches for pid namespace. They carry minor comments suggested by Suka and Nadia in lxc-dev.
---
pidns20:
The pidns20.c testcase verifies that signal handler of SIGUSR1 is called (and cinit is NOT terminated) when:
- container-init blocks SIGUSR1,
- parent queues SIGUSR1 and
- a handler is specified for SIGUSR1 before it is unblocked.
Change log:
version 2:
* added two pipes for reliable testing.
version 1:
* Submitted in lxc-dev
pidns21:
The pidns21.c testcase verifies that container-init is terminated by SIGUSR1 when:
- a handler is specified for SIGUSR1,
- container-init blocks SIGUSR1,
- parent queues SIGUSR1 and
- handler for SIGUSR1 is set to system default before SIGUSR1 is unblocked.
Change log:
version 2:
* added two pipes for reliable testing.
version 1:
* Submitted in lxc-dev
Signed-off-by: Gowrishankar M <gowrishankar.m@in.ibm.com>, Acked-by: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>.
idns20.c
idns21.c
unpidnstest.sh
0f1684ddf490582c738145e6882c37348fc8fec1 17-Dec-2008 subrata_modak <subrata_modak> Adding the patch for running the tests pidns14.c and pidns16.c. Please accept this. Signed-Off-By: Veerendra <veeren@linux.vnet.ibm.com>.
unpidnstest.sh
910f93ac3b36e0b37e7afcce80f360afa875416e 16-Dec-2008 subrata_modak <subrata_modak> Please accept below testcase patches for pid namespace.
pidns12:
Description:
The pidns12.c testcase verifies that siginfo->si_pid is set to 0 if sender (parent process) is not in receiver's namespace.
pidns13:
The pidns13.c testcase checks container init, for async I/O triggered by peer namespace process.
pidns17:
The pidns17.c testcase verifies inside the container, if kill(-1, SIGUSR1) terminates all children running inside.
Signed-off-by: Gowrishankar M <gowrishankar.m@in.ibm.com>,
Acked-by: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>.
idns12.c
idns13.c
idns17.c
unpidnstest.sh
698b9aac3a9f5ba717662ec5c9c30bc5d32d4376 15-Dec-2008 subrata_modak <subrata_modak> Testcase pidns10 on pidnamespace: The pidns10.c testcase verifies inside the container, if kill(-1, sig) fails with ESRCH when there are no processes in container besides container-init. Signed-off-by: Gowrishankar M <gowrishankar.m@in.ibm.com>, Acked-by: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>.
idns10.c
unpidnstest.sh
d757ea1b4cd73b6567d337898914f411409bb3d4 12-Dec-2008 subrata_modak <subrata_modak> Please find the testcase for the below scenario. Assertion:
** kill - USR1 container_init,
** - from the parent process and also inside a container,
** - Where init has defined a custom handler for USR1,
** - Should call the handler, and,
** - Verify whether the signal handler is called from the proper process.
Signed-off by: Veerendra C <vechandr@in.ibm.com>,
Results:
# ./pidns16
pidns16 0 INFO : sig_handler is signalled from pid 29640
pidns16 0 INFO : Container: Resumed after receiving SIGUSR1 from parentNS
pidns16 0 INFO : sig_handler is signalled from pid 1
pidns16 0 INFO : Container: Resumed after sending SIGUSR1 from container itself
pidns16 1 PASS : container init continued successfuly, after handling signal -USR1
Suka,
After your comments, now I am checking in the signal handler the sending procee id. If it is from the parent ns and when it is from container init. Also made some small changes after doing waitpid() in main.
idns16.c
d20acab3f7af1ec35bd101e58d0add407685de83 12-Dec-2008 subrata_modak <subrata_modak> Please find the patch for the pidns14.c testcase. Test Assertion:
** kill -USR1 container_init from outside a container,
** $ Where init has not defined a custom handler for USR1,
** $ Should kill the container,
** $ else the test fails,
Signed-off-by: Veerendra C <vechandr@in.ibm.com>,
Results:
# ./pidns14
pidns14 1 PASS : container init is killed, as expected
Sukadev, Included the changes suggested by you after doing waitpid() at the end.
idns14.c
3a14aff5ce8bb20ead063dd4b59a7e7e74587c95 12-Dec-2008 subrata_modak <subrata_modak> This is a proposal for 2 new testcases in the pidns testcases. They are related to POSIX message queues and notification on message arrival. Could you please review them? If a process registers for asynchronous notification on a POSIX message queue, it gets a signal and a siginfo_t structure when a message arrives on the message queue. The si_pid in the siginfo_t structure is set to the PID of the process that sent the message. If the process that sent the message is not in the same namespace as the notified one, this should be taken into account.
pidns30 : notified process is in a descendant namespace wrt to the notifier. so the signal receiver doesn't know about the sender's pid.
pidns31 : notified process is in an ancestor namespace wrt to the notifier. so the signal receiver should get the sender's PID in the signal receiver namespace.
They currently fail, since the si_pid is not correctly set. But I just proposed a patch to fix this (see http://lkml.org/lkml/2008/12/5/13). This testcase checks if the si_pid is correctly set when a process that has registered for notification on a posix mqueue is in an ancestor namespace wrt the process that sends a message to that posix mqueue. Signed-off-by: Nadia Derbey <Nadia.Derbey@bull.net>, Acked-By: <sukadev@linux.vnet.ibm.com>.
idns31.c
unpidnstest.sh
069c67de00995814a9a5cefc4fb2b1d0569ffea2 12-Dec-2008 subrata_modak <subrata_modak> This is a proposal for 2 new testcases in the pidns testcases. They are related to POSIX message queues and notification on message arrival. Could you please review them? If a process registers for asynchronous notification on a POSIX message queue, it gets a signal and a siginfo_t structure when a message arrives on the message queue. The si_pid in the siginfo_t structure is set to the PID of the process that sent the message. If the process that sent the message is not in the same namespace as the notified one, this should be taken into account.
pidns30 : notified process is in a descendant namespace wrt to the notifier. so the signal receiver doesn't know about the sender's pid.
pidns31 : notified process is in an ancestor namespace wrt to the notifier. so the signal receiver should get the sender's PID in the signal receiver namespace.
They currently fail, since the si_pid is not correctly set. But I just proposed a patch to fix this (see http://lkml.org/lkml/2008/12/5/13). This testcase checks if the si_pid is correctly set when a process that has registered for notification on a posix mqueue is in a descendant namespace wrt the process that sends a message to that posix mqueue. Signed-off-by: Nadia Derbey <Nadia.Derbey@bull.net>, Acked-By: <sukadev@linux.vnet.ibm.com>.
akefile
idns30.c
unpidnstest.sh
88af33524664e979955fbb23507d936f2f552d6e 27-Nov-2008 subrata_modak <subrata_modak> Please find the testcase for the below assertion.
Assertions 1:
Steps:
a) Create a container .
b) Create many levels of child containers inside this container.
c) Now do kill -9 init , outside of the contaier.
d) This should kill all the child containers . (containers created at the level below ).
Signed-Off-By: Veerendra <veeren@linux.vnet.ibm.com>.
idns05.c
8534d9eeb3945b9008742d63bf92e6ed8a2b6cc3 18-Nov-2008 subrata_modak <subrata_modak> Please accept the patch for running the pidns tests for the containers. Also modified, to run all the testcases even when other testcase's fails. This patch contains the patches to run new tests pidns05 and pidns06. Also this patch will run all the pidns tests. And return back the exit code of the test, which failed first. Signed-off-by: Veerendra C <vechandr@in.ibm.com>. Acked-by: Serge Hallyn <serue@us.ibm.com>.
unpidnstest.sh
66e085088aa898519fe27c92220c5f140c36f6e7 07-Nov-2008 subrata_modak <subrata_modak> Submitting the testcase, which would try to kill the parent namespace pid from the container init. Also this tests a scenario of killing non existent pid from the container. Signed-off-by: Veerendra C <vechandr@in.ibm.com>. Acked-by: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>.
idns06.c
b15aafd4f07a07e790ac504343cf8d9bd77963af 20-Oct-2008 subrata_modak <subrata_modak> Hi,

This patch fixes most of warnings and badness including the following,

libnetns.c: In function ‘create_net_namespace’:
libnetns.c:65: warning: implicit declaration of function ‘tst_kvercmp’
shmnstest.c: In function ‘main’:
shmnstest.c:71: warning: unused variable ‘pid’
pidns03.c: In function ‘main’:
pidns03.c:83: warning: passing argument 4 of ‘do_clone_unshare_test’ makes pointer from integer
without a cast
cpuctl_test01.c: In function ‘main’:
cpuctl_test01.c:133: warning: implicit declaration of function ‘open’
cpuctl_test01.c:195: warning: unknown conversion type character ‘)’ in format
cpuctl_test01.c:195: warning: unknown conversion type character ‘)’ in format
cpuctl_test02.c: In function ‘main’:
cpuctl_test02.c:146: warning: implicit declaration of function ‘open’
cpuctl_test02.c:207: warning: unknown conversion type character ‘)’ in format
cpuctl_test02.c:207: warning: unknown conversion type character ‘)’ in format
cpuctl_test02.c:207: warning: format ‘%lu’ expects type ‘long unsigned int’, but argument 8 has
type ‘unsigned int’
cpuctl_test03.c: In function ‘main’:
cpuctl_test03.c:144: warning: implicit declaration of function ‘open’
cpuctl_test03.c:205: warning: unknown conversion type character ‘)’ in format
cpuctl_test03.c:205: warning: unknown conversion type character ‘)’ in format
cpuctl_test04.c: In function ‘main’:
cpuctl_test04.c:147: warning: implicit declaration of function ‘open’
cpuctl_test04.c:208: warning: unknown conversion type character ‘)’ in format
cpuctl_test04.c:208: warning: unknown conversion type character ‘)’ in format
cpuctl_test04.c:208: warning: format ‘%3lu’ expects type ‘long unsigned int’, but argument 8 has
type ‘unsigned int’
memctl_test01.c: In function ‘allocate_memory’:
memctl_test01.c:171: warning: assignment from incompatible pointer type
doio.c: In function ‘main’:
doio.c:477: warning: ‘sigblock’ is deprecated (declared at /usr/include/signal.h:181)
growfiles.c: In function ‘growfile’:
growfiles.c:2064: warning: pointer targets in passing argument 2 of ‘databingen’ differ in
signedness
growfiles.c:2066: warning: pointer targets in passing argument 2 of ‘databingen’ differ in
signedness
growfiles.c:2068: warning: pointer targets in passing argument 2 of ‘databingen’ differ in
signedness
growfiles.c:2070: warning: pointer targets in passing argument 2 of ‘databingen’ differ in
signedness
growfiles.c:2072: warning: pointer targets in passing argument 2 of ‘databingen’ differ in
signedness
growfiles.c:2074: warning: pointer targets in passing argument 2 of ‘databingen’ differ in
signedness
childmain.c: In function ‘ChildMain’:
childmain.c:551: warning: cast to pointer from integer of different size
childmain.c:559: warning: cast to pointer from integer of different size
childmain.c:569: warning: cast to pointer from integer of different size
childmain.c:838: warning: cast to pointer from integer of different size
dump.c: In function ‘format_str’:
dump.c:54: warning: pointer targets in passing argument 1 of ‘sprintf’ differ in signedness
dump.c:55: warning: pointer targets in passing argument 1 of ‘strlen’ differ in signedness
dump.c:55: warning: pointer targets in passing argument 1 of ‘__builtin_strncat’ differ in
signedness
dump.c:55: warning: pointer targets in passing argument 2 of ‘__builtin_strncat’ differ in
signedness
dump.c:57: warning: pointer targets in passing argument 1 of ‘strlen’ differ in signedness
dump.c:57: warning: pointer targets in passing argument 1 of ‘__builtin_strncat’ differ in
signedness
dump.c:58: warning: pointer targets in passing argument 1 of ‘strlen’ differ in signedness
dump.c:58: warning: pointer targets in passing argument 1 of ‘__builtin_strncat’ differ in
signedness
dump.c:59: warning: pointer targets in passing argument 1 of ‘sprintf’ differ in signedness
dump.c:60: warning: pointer targets in passing argument 1 of ‘strlen’ differ in signedness
dump.c:60: warning: pointer targets in passing argument 1 of ‘__builtin_strncat’ differ in
signedness
dump.c:60: warning: pointer targets in passing argument 2 of ‘__builtin_strncat’ differ in
signedness
dump.c:63: warning: pointer targets in passing argument 1 of ‘strlen’ differ in signedness
dump.c:63: warning: pointer targets in passing argument 1 of ‘__builtin_strncat’ differ in
signedness
dump.c:64: warning: pointer targets in passing argument 1 of ‘strlen’ differ in signedness
dump.c:64: warning: pointer targets in passing argument 1 of ‘__builtin_strncat’ differ in
signedness
dump.c:65: warning: pointer targets in passing argument 1 of ‘strlen’ differ in signedness
dump.c:65: warning: pointer targets in passing argument 1 of ‘__builtin_strncat’ differ in
signedness
dump.c:67: warning: pointer targets in passing argument 1 of ‘strlen’ differ in signedness
dump.c:67: warning: pointer targets in passing argument 1 of ‘__builtin_strncat’ differ in
signedness
dump.c:69: warning: pointer targets in passing argument 1 of ‘sprintf’ differ in signedness
dump.c:70: warning: pointer targets in passing argument 1 of ‘strlen’ differ in signedness
dump.c:70: warning: pointer targets in passing argument 1 of ‘__builtin_strncat’ differ in
signedness
dump.c:70: warning: pointer targets in passing argument 2 of ‘__builtin_strncat’ differ in
signedness
dump.c: In function ‘format_raw’:
dump.c:91: warning: pointer targets in passing argument 1 of ‘sprintf’ differ in signedness
dump.c:92: warning: pointer targets in passing argument 1 of ‘strlen’ differ in signedness
dump.c:92: warning: pointer targets in passing argument 1 of ‘__builtin_strncat’ differ in
signedness
dump.c:92: warning: pointer targets in passing argument 2 of ‘__builtin_strncat’ differ in
signedness
dump.c:94: warning: pointer targets in passing argument 1 of ‘sprintf’ differ in signedness
dump.c:95: warning: pointer targets in passing argument 1 of ‘strlen’ differ in signedness
dump.c:95: warning: pointer targets in passing argument 1 of ‘__builtin_strncat’ differ in
signedness
dump.c:95: warning: pointer targets in passing argument 2 of ‘__builtin_strncat’ differ in
signedness
main.c: In function ‘threadedMain’:
main.c:258: warning: cast to pointer from integer of different size
main.c:259: warning: cast to pointer from integer of different size
main.c:266: warning: cast to pointer from integer of different size
main.c:365: warning: cast to pointer from integer of different size
timer.c: In function ‘ChildTimer’:
timer.c:196: warning: cast to pointer from integer of different size
signal_test_01.c: In function ‘main’:
signal_test_01.c:195: warning: ‘sigsetmask’ is deprecated (declared at /usr/include/signal.h:184)
signal_test_01.c:232: warning: ‘sigblock’ is deprecated (declared at /usr/include/signal.h:181)
signal_test_03.c: In function ‘main’:
signal_test_03.c:119: warning: ‘sigblock’ is deprecated (declared at /usr/include/signal.h:181)
signal_test_03.c:144: warning: ‘sigsetmask’ is deprecated (declared at /usr/include/signal.h:184)
libipc.c: In function ‘init_buf’:
libipc.c:120: warning: cast from pointer to integer of different size
mallocstress.c: In function ‘alloc_mem’:
mallocstress.c:272: warning: cast from pointer to integer of different size
mallocstress.c:275: warning: cast from pointer to integer of different size
mallocstress.c:276: warning: cast to pointer from integer of different size
mallocstress.c: In function ‘main’:
mallocstress.c:316: warning: cast from pointer to integer of different size
mallocstress.c:327: warning: cast from pointer to integer of different size
mallocstress.c:368: warning: cast to pointer from integer of different size
shm_test.c: In function ‘shmat_rd_wr’:
shm_test.c:207: warning: cast to pointer from integer of different size
shm_test.c:221: warning: cast to pointer from integer of different size
shm_test.c:266: warning: cast to pointer from integer of different size
shm_test.c:270: warning: cast to pointer from integer of different size
shm_test.c: In function ‘main’:
shm_test.c:315: warning: cast from pointer to integer of different size
shm_test.c:326: warning: cast from pointer to integer of different size
pthserv.c: In function ‘main’:
pthserv.c:146: warning: pointer targets in passing argument 3 of ‘accept’ differ in signedness
pthserv.c:156: warning: cast to pointer from integer of different size
trace_sched.c: In function ‘get_proc_num’:
trace_sched.c:154: warning: cast from pointer to integer of different size
trace_sched.c: In function ‘main’:
trace_sched.c:348: warning: cast from pointer to integer of different size
trace_sched.c:381: warning: cast from pointer to integer of different size
check_simple_capset.c:23:28: error: sys/capability.h: No such file or directory
check_simple_capset.c: In function ‘main’:
check_simple_capset.c:27: error: ‘cap_t’ undeclared (first use in this function)
check_simple_capset.c:27: error: (Each undeclared identifier is reported only once
check_simple_capset.c:27: error: for each function it appears in.)
check_simple_capset.c:27: error: expected ‘;’ before ‘caps’
check_simple_capset.c:30: error: ‘caps’ undeclared (first use in this function)
check_simple_capset.c:31: error: ‘caps2’ undeclared (first use in this function)
clone03.c: In function ‘main’:
clone03.c:138: warning: cast from pointer to integer of different size
clone04.c: In function ‘main’:
clone04.c:147: warning: cast from pointer to integer of different size
clone06.c: In function ‘main’:
clone06.c:143: warning: cast from pointer to integer of different size
fmtmsg01.c: In function ‘clearbuf’:
fmtmsg01.c:82: warning: cast from pointer to integer of different size
libipc.c: In function ‘init_buf’:
libipc.c:116: warning: cast from pointer to integer of different size
msgget01.c: In function ‘check_functionality’:
msgget01.c:144: warning: cast from pointer to integer of different size
lib.c: In function ‘test_ENAMETOOLONG_path’:
lib.c:224: warning: cast from pointer to integer of different size
lib64.c: In function ‘test_ENAMETOOLONG_path’:
lib64.c:224: warning: cast from pointer to integer of different size
endian_switch01.c:64: warning: ‘setup’ defined but not used
crash01.c: In function ‘badboy_loop’:
crash01.c:344: warning: pointer targets in passing argument 1 of ‘castaway’ differ in signedness
crash01.c: In function ‘compute_badboy’:
crash01.c:529: warning: pointer targets in passing argument 1 of ‘castaway’ differ in signedness
crash01.c:537: warning: pointer targets in passing argument 1 of ‘castaway’ differ in signedness
crash01.c:543: warning: pointer targets in passing argument 1 of ‘castaway’ differ in signedness
netsync.c: In function ‘setupConnectionServeur’:
netsync.c:80: warning: pointer targets in passing argument 3 of ‘accept’ differ in signedness
test_1_to_1_threads.c: In function ‘main’:
test_1_to_1_threads.c:177: warning: cast to pointer from integer of different size
test_sctp_sendrecvmsg.c: In function ‘main’:
test_sctp_sendrecvmsg.c:150: warning: pointer targets in passing argument 5 of ‘getsockopt’ differ
in signedness
test_sctp_sendrecvmsg.c:224: warning: pointer targets in passing argument 5 of ‘getsockopt’ differ
in signedness
test_timetolive.c: In function ‘main’:
test_timetolive.c:152: warning: pointer targets in passing argument 5 of ‘getsockopt’ differ in
signedness
test_timetolive.c:260: warning: pointer targets in passing argument 5 of ‘getsockopt’ differ in
signedness
test_sctp_sendrecvmsg.c: In function ‘main’:
test_sctp_sendrecvmsg.c:150: warning: pointer targets in passing argument 5 of ‘getsockopt’ differ
in signedness
test_sctp_sendrecvmsg.c:224: warning: pointer targets in passing argument 5 of ‘getsockopt’ differ
in signedness
test_timetolive.c: In function ‘main’:
test_timetolive.c:152: warning: pointer targets in passing argument 5 of ‘getsockopt’ differ in
signedness
test_timetolive.c:260: warning: pointer targets in passing argument 5 of ‘getsockopt’ differ in
signedness
ltpClient.c: In function ‘network_listener’:
ltpClient.c:377: warning: pointer targets in passing argument 6 of ‘recvfrom’ differ in signedness
ltpClient.c: In function ‘ping_network’:
ltpClient.c:507: warning: pointer targets in passing argument 6 of ‘recvfrom’ differ in signedness
ltpClient.c: In function ‘ltp_traceroute’:
ltpClient.c:596: warning: pointer targets in passing argument 6 of ‘recvfrom’ differ in signedness
ltpServer.c: In function ‘ltp_udp_server_queue’:
ltpServer.c:235: warning: pointer targets in passing argument 6 of ‘recvfrom’ differ in signedness
ltpServer.c: In function ‘ltp_tcp_server_queue’:
ltpServer.c:268: warning: pointer targets in passing argument 3 of ‘accept’ differ in signedness
ltpServer.c: In function ‘tcp_receive_buffer’:
ltpServer.c:318: warning: pointer targets in passing argument 6 of ‘recvfrom’ differ in signedness
ltpServer.c: In function ‘ltp_multi_server_queue’:
ltpServer.c:383: warning: pointer targets in passing argument 6 of ‘recvfrom’ differ in signedness
Compiled successfully on Fedora 10 Beta x86_64.
Signed-off-by: CAI Qian <caiqian@cclom.cn>.
idns03.c
ba6c2f6a47cc0be2c99fcc1cf582223e226a74ce 17-Oct-2008 subrata_modak <subrata_modak> Fixing the runpidnstest.sh in containers/pidns, to handle the return code properly. Also removed the obsolete file runtests_noltp.sh, which is no longer required. Signed-Off-By: Veerendra <veeren@linux.vnet.ibm.com>.
unpidnstest.sh
untests_noltp.sh
c476f1d78738302a452f6b2d0888f8ac42e5763a 15-Oct-2008 subrata_modak <subrata_modak> Attaching the patch for the testcase on PIDNS. Assertion: 1. kill -9 1 from inside a container does not kill container, Steps: a) create container, b) kill -9 1, c) Should not kill the containers. Signed-Off-By: Veerendra <veeren@linux.vnet.ibm.com>.
idns04.c
unpidnstest.sh
a2af6a3ca488e0f05a7fe93d219426ca73383ef0 15-Oct-2008 subrata_modak <subrata_modak> If we unshare pidns without unsharing mounts namespace, and then do a mount -t proc none /proc, then the new proc sits over the original proc for the whole system. Since pidns03 wasn't using CLONE_NEWNS, when it exited /proc showed zero tasks. This can be fixed by doing 'umount -l /proc', but 'umount /proc' is insufficient. More to the point, pidns03 wasn't trying to clean up /proc at all. So make it use CLONE_NEWNS so its private procfs will be automatically cleaned up. Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>.
idns03.c
5e423f6f46d6226c076b3d9c52839baddd45ba72 18-Sep-2008 subrata_modak <subrata_modak> When I built and installed the latest LTP cases, some errors broke the install process. And the system didn't support "unshare". The patches modified these files. Signed-off-by: Jin Bing Guo <guojb@cn.ibm.com>. Based on a cursory glance and memory of Matt's patches, this looks good. "Serge E. Hallyn" <serue@us.ibm.com>.
akefile
74a71d373428659475d86081930ae49b74d482bf 08-Sep-2008 subrata_modak <subrata_modak> Use non-recursive assignment. This means, for example, that:
SRCS := $(wildcard *.c)
will call the wildcard function, substitute the output, and assign it to SRCS. Recursive assignment (plain =) would use the output and continue performing substitutions until no further substitutions could be made.
Signed-off-by: Matt Helsley <matthltc@us.ibm.com>,
Acked-by: Serge Hallyn <serue@us.ibm.com>.
akefile
cd92d5436afb7bfd6e5a2861913afab7519386ed 08-Sep-2008 subrata_modak <subrata_modak> Now that they are in it's best to drop the noltp junk leftover from the LTP port of the container tests.
Signed-off-by: Matt Helsley <matthltc@us.ibm.com>,
Acked-by: Serge Hallyn <serue@us.ibm.com>.
akefile
idns01.c
idns02.c
idns03.c
c82f8046dd2ec9d54503f110c5406afc062e6592 08-Sep-2008 subrata_modak <subrata_modak> Now that we have proper dependencies on check_for_unshare we take explicit tests for unshare out of the top-level make file and distribute to each subdir Makefile as ifeq...endif sections which control which targets to build. While it doesn't avoid descending into subdirs it's easier to read and check the make code when most of the build rules don't have shell flow control. Even better if we could change the contents of SUBDIRS based on the results of running check_for_unshare.
Also note the use of := and not =. info Make is our friend.
Signed-off-by: Matt Helsley <matthltc@us.ibm.com>,
Acked-by: Serge Hallyn <serue@us.ibm.com>,
akefile
c864960ed4bfa8d119afbc1a7f92be5ca590ec89 27-Aug-2008 subrata_modak <subrata_modak> When packaging LTP with rpmlinit, rpmlinit complains about several scripts which don't have Shebang on the head of the file. Some files didn't have a Shebang at all. Signed-off-by: Daniel Gollub <dgollub@suse.de>.
unpidnstest.sh
1e9d84b1c4da16705e6c67baa46e250a9d5fa66c 06-Feb-2008 subrata_modak <subrata_modak> Some code cleanup in PID & SYSVIPC namespace testcases, by, "Rishikesh K. Rajak" <risrajak@linux.vnet.ibm.com>
idns01.c
idns02.c
idns03.c
c7d5c36eaaa959644ccb424962db5d1b99ff0ab0 28-Dec-2007 subrata_modak <subrata_modak> Initial set of PID Namespace testcase contributed by "Rishikesh K. Rajak" <risrajak@linux.vnet.ibm.com>
akefile
EADME
heck_pidns_enabled.c
idns01.c
idns02.c
idns03.c
unpidnstest.sh
untests_noltp.sh