f01914728723e3340456645c339eee745600d37e |
22-Dec-2017 |
Petr Vorel <pvorel@suse.cz> |
kernel/module: Cleanup definition MODULE_NAME_LEN (defined from MAX_PARAM_PREFIX_LEN) is not part of public kernel headers for user space. Thus it's not in /usr/include/linux/module.h (linux/module.h from libc) and must be defined. NOTE: The code was working as it does not include config.h to check HAVE_LINUX_MODULE_H. Signed-off-by: Petr Vorel <pvorel@suse.cz>
elete_module/delete_module02.c
|
3ac6ae7a78adb25b3d4496a0a5ed1ee63652da8a |
03-Oct-2017 |
Cyril Hrubis <chrubis@suse.cz> |
Make use of SAFE_SETEUID() Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
reate_module/create_module02.c
|
817d8095fbfe5ebe22b29f58b7483f3d8d5e3fcc |
24-Jul-2017 |
Richard Palethorpe <rpalethorpe@suse.com> |
Rename linux_syscall_numbers.h to lapi/syscalls.h Move testcases/kernel/include/linux_syscall_numbers.h to lapi/syscalls.h so that it is easily accessible from the LTP library as well as the tests. Signed-off-by: Richard Palethorpe <rpalethorpe@suse.com> Acked-by: Cyril Hrubis <chrubis@suse.cz> Acked-by: Jan Stancek <jstancek@redhat.com>
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
|
8967f960f820f449162101a02ee5747f195a8a57 |
14-Feb-2017 |
Ngie Cooper <yaneurabeya@gmail.com> |
Update references with my old legal name/email to my current name/email address No functional change Signed-off-by: Ngie Cooper <yaneurabeya@gmail.com>
akefile
|
bbdb9f78378c7e038f463efa39d2470e1c51ad54 |
16-Mar-2016 |
Cyril Hrubis <chrubis@suse.cz> |
lib: Add new test library API The main features are: o The cleanup callback is not passed directly to various library functions but is set once globally in the structure that describes a test - this makes the test API easier to use - also fixes a few common mistakes such as passing cleanup callback to functions executed from a cleanup o Most of the boilerplate code is moved to library - no more copying standard looping code around :) o Various resources are initialized and freed automatically when requested - this means much less race conditions and ordering problems in cleanups o The result reporting functions now use shared memory to propagate test results from child processes - writing tests in child processes is now easier than ever + The test-writing-guidelines.txt were updated Many thanks to Jan who reviewed numerous respins of this patches and provided valuable suggestions and also to Alexey who pointed out some stupid mistakes of mine. Reviewed-by: Jan Stancek <jstancek@redhat.com> Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
elete_module/delete_module01.c
elete_module/delete_module03.c
|
4c44b3c31c01be4cb63f4a1ed27526826214b9c4 |
28-Mar-2016 |
Mason <slash.tmp@free.fr> |
delete_module: export license information Export license information to avoid kernel taint. dummy_del_mod: module license 'unspecified' taints kernel. Disabling lock debugging due to kernel taint Signed-off-by: Mason <slash.tmp@free.fr>
elete_module/dummy_del_mod.c
elete_module/dummy_del_mod_dep.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>
reate_module/create_module01.c
reate_module/create_module02.c
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
uery_module/query_module01.c
uery_module/query_module03.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>
reate_module/create_module01.c
reate_module/create_module02.c
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
uery_module/query_module01.c
uery_module/query_module02.c
uery_module/query_module03.c
|
aabb8340f63ed31afe995fd97795e542dc68b93c |
04-Feb-2015 |
Cyril Hrubis <chrubis@suse.cz> |
Include usctest.h in test.h Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
reate_module/create_module01.c
reate_module/create_module02.c
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
uery_module/query_module01.c
uery_module/query_module02.c
uery_module/query_module03.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>
reate_module/create_module01.c
reate_module/create_module02.c
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
uery_module/query_module01.c
uery_module/query_module02.c
uery_module/query_module03.c
|
cf0d626fe6224db3c714843dc7007e9f81d94a80 |
23-Sep-2014 |
Cyril Hrubis <chrubis@suse.cz> |
Remove all useless NULL casts. Created with coccinelle patch: @@ type T; @@ -(T) NULL + NULL Hint: You have to disable isomorphisms by pointing --iso-file to empty file Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
reate_module/create_module01.c
reate_module/create_module02.c
uery_module/query_module01.c
uery_module/query_module02.c
uery_module/query_module03.c
|
1dbf0b4a70c0ef7c849a0b3cd42da2c3874f9432 |
10-Jun-2014 |
Cyril Hrubis <chrubis@suse.cz> |
lib: Remove -c option and STD_COPIES Remove -c option that was never working correctly. The -c option, if set, forks the test in test setup() creating several instances of the test to be running at the same time. The problems with the implementation were: * The failure of the forked tests WAS NOT popagaged to the first instance * The test driver (ltp-pan) tracks only the first instance and kills the rest of the tests instances once the first one finishes * Most of the tests does not expect to be running concurently (there are races in using the same test directory, loop devices, etc.) While the first two would be easy to fix the last one would require reviewing and testing all testcases which is too much work. Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
elete_module/delete_module03.c
uery_module/query_module01.c
uery_module/query_module03.c
|
e38b961c385192f0d804914b77bd590734b42e75 |
02-Jun-2014 |
Cyril Hrubis <chrubis@suse.cz> |
Remove STD_FUNCTIONAL_TEST Only small part of the testcases was using STD_FUNCTIONAL_TEST and these that were actually using it mostly misused the interface or used it only to disable the tst_rest(TPASS, "sycall passed") message. The default value was STD_FUNCTION_TEST enabled, so this only removes code that is not executed in LTP testrun and there should be no functional changes. Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
uery_module/query_module01.c
|
0b9589f3f9c0345b29cfcf7da5a1253c708303eb |
27-May-2014 |
Cyril Hrubis <chrubis@suse.cz> |
testcases: Constify char *msg variable. The parse_opts() now returns const char * instead of char * this commit fixes all warnings caused by the change. Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
reate_module/create_module01.c
reate_module/create_module02.c
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
uery_module/query_module01.c
uery_module/query_module02.c
uery_module/query_module03.c
|
c7d51953d0fbb506a972b51fc7f1a0cd4541a4e6 |
25-Feb-2014 |
Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> |
kernel/module/delete_module: added .gitignore Signed-off-by: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
elete_module/.gitignore
|
71e8e19ea9261b576cd27e55bb08d802d7b7a9cf |
11-Feb-2014 |
Xiaoguang Wang <wangxg.fnst@cn.fujitsu.com> |
module/delete_module: make delete_module tests run default module/delete_module/Makefile: make some fixes to conform to module compile in kernel 2.6 series and higher testcases/kernel/Makefile: make it include module test Signed-off-by: Xiaoguang Wang <wangxg.fnst@cn.fujitsu.com> Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
elete_module/Makefile
|
c8da874ff0a01085b0d078f7cd45b8e66a17bddd |
11-Feb-2014 |
Xiaoguang Wang <wangxg.fnst@cn.fujitsu.com> |
delete_module/delete_module03.c: cleanup * Delete some useless commtents and fix some. * Use SAFE_* macros. * Some cleanup. Signed-off-by: Xiaoguang Wang <wangxg.fnst@cn.fujitsu.com> Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
elete_module/delete_module03.c
|
c2a4cd9aa6cebc1cd837e05bfa088ddc3d772569 |
11-Feb-2014 |
Xiaoguang Wang <wangxg.fnst@cn.fujitsu.com> |
delete_module/delete_module02.c: cleanup * Delete some useless commtents. * Use SAFE_* macros. * Some cleanup. Signed-off-by: Xiaoguang Wang <wangxg.fnst@cn.fujitsu.com> Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
elete_module/delete_module02.c
|
953df03b6e133504c1f1ce679ebc25de01d844b9 |
11-Feb-2014 |
Xiaoguang Wang <wangxg.fnst@cn.fujitsu.com> |
delete_module/delete_module01.c: cleanup * Delete some useless commtents. * Use SAFE_* macros. * Some cleanup and fixes. Signed-off-by: Xiaoguang Wang <wangxg.fnst@cn.fujitsu.com> Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
elete_module/delete_module01.c
|
d59a659cd639ca2780b00049d102acd2a783d585 |
07-Mar-2013 |
Caspar Zhang <caspar@casparzhang.com> |
s/Tst_count/tst_count/ to avoid CamelCase when using latest checkpatch.pl, CamelCase variables are not encouraged, this patch does a batch update to replace all var `Tst_count` with `tst_count`. Signed-off-by: Caspar Zhang <caspar@casparzhang.com> Acked-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
reate_module/create_module01.c
reate_module/create_module02.c
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
uery_module/query_module01.c
uery_module/query_module02.c
uery_module/query_module03.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>
reate_module/create_module01.c
reate_module/create_module02.c
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
elete_module/dummy_del_mod.c
elete_module/dummy_del_mod_dep.c
uery_module/dummy_query_mod.c
uery_module/dummy_query_mod_dep.c
uery_module/query_module01.c
uery_module/query_module02.c
uery_module/query_module03.c
|
89af32a63ce8a780ea39337339e14caae244b5a4 |
24-Oct-2012 |
Cyril Hrubis <chrubis@suse.cz> |
Another semiautomated cleanup. This patch removes all dumbious comments as: /* loop counter */ /* message returned from from parse_opts */ /* parse standard options */ Various variations on: int i; /* ... counter .... */ Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
reate_module/create_module01.c
reate_module/create_module02.c
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
uery_module/query_module01.c
uery_module/query_module02.c
uery_module/query_module03.c
|
fed9641096e27f79a0f2d9adfe9839dd8d11dc0f |
24-Oct-2012 |
Wanlong Gao <gaowanlong@cn.fujitsu.com> |
Fix FSF address find . -type f -exec sed -i 's/the Free Software Foundation, Inc., 59/the Free Software Foundation, Inc.,/g;s/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>
reate_module/create_module01.c
reate_module/create_module02.c
elete_module/Makefile
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
elete_module/dummy_del_mod.c
elete_module/dummy_del_mod_dep.c
uery_module/Makefile
uery_module/dummy_query_mod.c
uery_module/dummy_query_mod_dep.c
uery_module/query_module01.c
uery_module/query_module02.c
uery_module/query_module03.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>
reate_module/Makefile
|
37550cf5a86c7ca7424a2a318dd64e550f13f5df |
18-Oct-2012 |
Chris Dearman <chris@mips.com> |
Remove whitespace at end of line 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 's/[\t ]*$//' Signed-off-by: Chris Dearman <chris@mips.com>
EADME
reate_module/Makefile
uery_module/Makefile
|
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>
reate_module/create_module01.c
reate_module/create_module02.c
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
elete_module/dummy_del_mod.c
elete_module/dummy_del_mod_dep.c
uery_module/dummy_query_mod.c
uery_module/dummy_query_mod_dep.c
uery_module/query_module01.c
uery_module/query_module02.c
uery_module/query_module03.c
|
72521cf0741034f67dd17107453cda9a9819264c |
18-Dec-2010 |
Garrett Cooper <yanegomi@gmail.com> |
Fix more tests; remove more Tst_count externs. Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
reate_module/create_module01.c
reate_module/create_module02.c
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
uery_module/query_module01.c
uery_module/query_module02.c
uery_module/query_module03.c
|
7d0a4a57fbcd47f72b67c08df532e8ef47f6fdae |
16-Dec-2010 |
Garrett Cooper <yanegomi@gmail.com> |
Cleanup style and get rid of conflicts problems. Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
elete_module/dummy_del_mod.c
elete_module/dummy_del_mod_dep.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>
reate_module/create_module01.c
reate_module/create_module02.c
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
elete_module/dummy_del_mod.c
elete_module/dummy_del_mod_dep.c
uery_module/dummy_query_mod.c
uery_module/dummy_query_mod_dep.c
uery_module/query_module01.c
uery_module/query_module02.c
uery_module/query_module03.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>
reate_module/create_module02.c
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
uery_module/query_module01.c
uery_module/query_module03.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>
reate_module/create_module01.c
reate_module/create_module02.c
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
uery_module/query_module01.c
uery_module/query_module02.c
uery_module/query_module03.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
elete_module/Makefile
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
elete_module/dummy_del_mod.c
elete_module/dummy_del_mod_dep.c
|
bdbaec51a423e715c2b03ed9e497e9a1fba6103e |
26-Feb-2009 |
subrata_modak <subrata_modak> |
Clean Trailing Tab: Signed-off-by: Michal Simek <monstr@monstr.eu>.
reate_module/create_module01.c
elete_module/delete_module01.c
uery_module/query_module01.c
uery_module/query_module03.c
|
4bb656a129f7507823e9e6d6b98b1a02fd80ef89 |
26-Feb-2009 |
subrata_modak <subrata_modak> |
Clear Trailing Whitespace. Signed-off-by: Michal Simek <monstr@monstr.eu>.
reate_module/create_module01.c
reate_module/create_module02.c
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
elete_module/dummy_del_mod.c
uery_module/query_module01.c
uery_module/query_module02.c
uery_module/query_module03.c
|
024988b73a0817c44be2a5a0675261c4425a3dea |
24-Sep-2008 |
subrata_modak <subrata_modak> |
Daniel Gollub <dgollub@suse.de> wrote: With 2.6.27-rc* linux/dirent.h got removed Kbuild headers_install targe and dirent struct got removed. Instead use #include <dirent.h> instead of #include <linux/dirent.h>. Garrett Cooper <yanegomi@gmail.com> wrote: It appears that asm/page.h isn't packaged with kernel.org sources anymore as of 2.6.25, according to some folks on #fedora-devel. I was just wondering a) if that's the case, b) whether or not those affected test compiles have been identified and removed / modified? If both questions are true and no one has pointed out this issue before now, I've found all of the items which don't follow this behavior: According to the folks in #fedora-devel (airlied, jwb), we shouldn't be using asm/page.h directly, but instead should be accessing everything in page.h via sysconf(2), like so: PAGE_SIZE => sysconf(_SC_PAGE_SIZE) This method is POSIX compatible as per: http://www.opengroup.org/onlinepubs/009695399/functions/sysconf.html. Yes, it is. There are numerous test cases in LTP which use: struct dirent, by including /usr/include/dirent.h. The interesting part is, this guy (/usr/include/dirent.h) in turn includes /usr/include/bits/dirent.h, where the definition of struct resides. Following is the patch which solves this issue along with page.h header file removal from 2.6.25 onwards, reported by Garret earlier. Signed-of-by: Subrata Modak <subrata@linux.vnet.ibm.com>.
reate_module/create_module02.c
elete_module/delete_module02.c
uery_module/query_module01.c
uery_module/query_module02.c
uery_module/query_module03.c
|
30798f7824ea436ce2301c2f6d3aba7a80c2d593 |
28-Mar-2008 |
subrata_modak <subrata_modak> |
The ltp-full-20080229/testcases/kernel/module/delete_module/Makefile will do this: @set -e; for i in $(MODULES); do ln -f $$i /tmp/$$i ; done If the ltp directory and /tmp are not in the same device, an error occurs: ln: creating hard link `/tmp/xxx' => `xxx': Invalid cross-device link I suffer from this. The patch as follows: Signed-off-by: Wang Fang <wangf@cn.fujitsu.com>
elete_module/Makefile
|
28f6fd3bd1bc767a4483fc53e85bfcfcd094b178 |
28-Mar-2008 |
subrata_modak <subrata_modak> |
When I was compiling ltp-full-20080229/kernel/module/, error occured. The error like this: ... scripts/Makefile.build:46: *** CFLAGS was changed in"ltp-full-20080229/testcases/kernel/module/delete_module/Makefile".Fix it to use EXTRA_CFLAGS. Stop. The reason is: When we build an External module, we should use EXTRA_CFLAGS, not CFLAGS. In detail please refer to Documentation/kbuild/modules.txt. In addition,there are some trashy "include" such as: "#include <asm/atomic.h>" in delete_module01.c "#include <linux/config.h>" in dummy_del_mod.c The following patch solves these problems: Signed-off-by: Wang Fang <wangf@cn.fujitsu.com>
elete_module/Makefile
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
elete_module/dummy_del_mod.c
elete_module/dummy_del_mod_dep.c
|
0722a2ba05fbb7f320e3f3cc63f86c97393bdd71 |
12-May-2006 |
vapier <vapier> |
as reported by Jane Lv, mmap() returns an unsigned value (MAP_FAILED) upon error, so checking with <= 0 will not work
elete_module/delete_module02.c
uery_module/query_module03.c
|
a43831bebeedcd70ae1c1efeaff38c6c74d2e8f4 |
22-Sep-2004 |
mridge <mridge> |
Changes requested from the security team for fix PPC64 error
elete_module/dummy_del_mod.c
elete_module/dummy_del_mod_dep.c
|
d03c2bfbdf39e63d477d631b3d84b957dad16935 |
17-Sep-2004 |
mridge <mridge> |
Fix typo and add log statement if a failure on loading the test module
elete_module/delete_module01.c
|
32da14d16725feb8520850f16d70e27adb01d8e7 |
17-Sep-2004 |
mridge <mridge> |
Fix typo in previous changes
elete_module/delete_module03.c
|
527458ee6b82528f1ffb511047be51dbd1d1623e |
16-Sep-2004 |
mridge <mridge> |
Changes from the security team
elete_module/Makefile
elete_module/delete_module01.c
elete_module/delete_module03.c
elete_module/dummy_del_mod.c
elete_module/dummy_del_mod_dep.c
|
5c8c8d492e62ae7e292d3b2122945d5697282fa9 |
02-Sep-2004 |
mridge <mridge> |
Remove include linux/module.h to fix possible build errors
elete_module/dummy_del_mod.c
elete_module/dummy_del_mod_dep.c
|
7b2f05e7502dec532ad575aa2812d6f5f092d210 |
19-Aug-2004 |
mridge <mridge> |
Changes to remove query_module and create_module which are now obsolete
akefile
|
ceec8c3cf6fe2f4a751a2eab6f2f66d683b879ed |
18-Aug-2004 |
mridge <mridge> |
Changes to support create module in the 2.6.X kernels
elete_module/Makefile
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
|
4edbd06d0a42d7d889fb85364bba42bae8595413 |
30-Apr-2003 |
robbiew <robbiew> |
Increased the size of the MAXMODSIZE to ensure correct execution on 64bit archs.
reate_module/create_module02.c
|
64320e40afb954f12929f2ab68e51ee1dc1bdc66 |
17-Mar-2003 |
plars <plars> |
Add a Makefile and readme file for module tests directory
akefile
EADME
|
30d5f31a4c7f5d6b87442d5a78ebb6305af34175 |
17-Mar-2003 |
plars <plars> |
fix delete_module and query_module tests to include kernel headers for modules they build
elete_module/Makefile
uery_module/Makefile
|
5f30b5d78d6337a249724fb89888db68f23e711b |
12-Mar-2003 |
plars <plars> |
Move *_module tests under /testcases/kernel
reate_module/Makefile
reate_module/create_module01.c
reate_module/create_module02.c
elete_module/Makefile
elete_module/delete_module01.c
elete_module/delete_module02.c
elete_module/delete_module03.c
elete_module/dummy_del_mod.c
elete_module/dummy_del_mod_dep.c
uery_module/Makefile
uery_module/dummy_query_mod.c
uery_module/dummy_query_mod_dep.c
uery_module/query_module01.c
uery_module/query_module02.c
uery_module/query_module03.c
|