1. fc40315 Change epoll_create2_01 to epoll_create1_01: Recently the epoll_create2_01 syscall test was added into LTP but I found the kernel has already changed the name of it into epoll_create1, and its interface, too. http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=9fe5ad9c8cef9ad5873d8ee55d1cf00d9b607df0. I wrote a patch for it. Signed-off-by: Seiichi Ikarashi <s.ikarashi@jp.fujitsu.com>. by subrata_modak · 15 years ago
  2. a23dec3 Paccept() has not been accepted upstream, and accept4() has already been tested in LTP, which does the pretty much same thing as the test here, http://lkml.org/lkml/2008/10/26/123. Hence, remove this test. Signed-off-by: CAI Qian <caiqian@cclom.cn>. by subrata_modak · 15 years ago
  3. 66ec125 Add inotify_init1_02 syscall test, testing inotify_init1(IN_NONBLOCK). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  4. 974ca6d Add pipe2_02 syscall test, testing pipe2(O_NONBLOCK). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com. by subrata_modak · 15 years ago
  5. a9ba214 Add timerfd03 syscall test, testing timerfd_create(TFD_NONBLOCK). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  6. 3a04537 Add eventfd2_02 syscall test, testing eventfd2(EFD_NONBLOCK). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  7. fc49f1f Add signalfd4_02 syscall test, testing signalfd4(SFD_NONBLOCK). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  8. fbb4421 Add paccept02 syscall test, testing paccept(SOCK_NONBLOCK). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  9. e2a743e Add socketpair02 syscall test, testing socketpair(SOCK_NONBLOCK). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  10. a97f116 Add socket03 syscall test, testing socket(SOCK_NONBLOCK). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  11. 6eeb383 Add inotify_init1_01 syscall test, testing inotify_init1(O_CLOEXEC). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  12. 768a081 Add pipe2_01 syscall test, testing pipe2(O_CLOEXEC). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  13. 7382a06 Add dup3_01 syscall test, testing dup3 (O_CLOEXEC). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com>,. by subrata_modak · 15 years ago
  14. 5000375 Add epoll_create2_01 syscall test, testing epoll_create2(EPOLL_CLOEXEC). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  15. 89c795f Add timerfd02 syscall test, testing timerfd_create(TFD_CLOEXEC). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  16. ee6d57b Add eventfd2_01 syscall test, testing eventfd2(EFD_CLOEXEC). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  17. 99b52e5 Add signalfd4_01 syscall test, testing signalfd4(SFD_CLOEXEC). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com>, by subrata_modak · 15 years ago
  18. aa0ab65 Add paccept01 syscall test, testing paccept(SOCK_CLOEXEC). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com>, by subrata_modak · 15 years ago
  19. 462f71a Add socket02 syscall test, testing socket(SOCK_CLOEXEC) and socketpair(SOCK_CLOEXEC). Signed-Off-By: Subrata Modak<subrata@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  20. d0a9af0 This testcase checked event IN_UNMOUNT. IN_UNMOUNT File system containing watched object was unmounted and check filesystem that it can't be unmounted if exist opened inotify descriptor. Example of execution: by subrata_modak · 16 years ago
  21. d9fb386 Add options for block devices and turn on related testcases. Signed-Off-By: Andrew Vagin <avagin@gmail.com>. by subrata_modak · 16 years ago
  22. cc378eb The problem is noticed only for these 2 tests lstat01A_64 and stat04_64. Analysis of the problem showed that these tests are called from runtest/syscall file. The problem is noticed because the symlink01.c file doesn't have implementation to take care lstat01A_64 and stat04_64 arguments that are passed in the file runtest/syscall. Solution: Simple solution is to remove lines. by subrata_modak · 16 years ago
  23. 7b3d3d2 Subrata Modak <subrata@linux.vnet.ibm.com> wrote: Hi Rusty, I found that you wrote a test program to verify whether all the valid IFF flags are implemented by TUNGETFEATURES ioctl (recently in 2.6.27: http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=07240fd0902c872f044f523893364a1a24c9f278). I ported the same into LTP format and created the first draft version. Yet to test it on the latest kernel, but the first draft works fine. If you do not have any issue(s), can we add this code to LTP with your permission ??. Rusty Russell <rusty@rustcorp.com.au> replied: Thanks, of course!. Signed-Off-By: Subrata Modak <subrata@linux.vnet.ibm.com>. Signed-Off-By: Rusty Russell <rusty@rustcorp.com.au>. by subrata_modak · 16 years ago
  24. df85b22 Fix for failure in syscalls/stat04_64 and syscalls/lstat01A_64 testcases, by, Dmitry Guryanov <dguryanov@parallels.com>. by subrata_modak · 16 years ago
  25. c85e0e5 Fix typo in pselect01_64 testcase: pselect0_64->pselect01_64. Signed-Off-By: Dmitry Guryanov <dguryanov@parallels.com>. by subrata_modak · 16 years ago
  26. cb1d6ce Initial Porting of accept4() syscall test to LTP by Subrata Modak <subrata@linux.vnet.ibm.com>. Originally written by Michael Kerrisk <mtk.manpages@gmail.com>. Later modified to suite compilation on different systems by Jiri Palecek <jpalecek@web.de>, who wrote the following: by subrata_modak · 16 years ago
  27. ae5eb2c I've introduced autoconf to modify_ldt test cases. The modification is very similar to the modification to signalfd. Signed-off-by: Masatake YAMATO<yamato@redhat.com>. by subrata_modak · 16 years ago
  28. d9600d1 Following the footsteps of Masatake Yamato, i have decided to enable building, installing & running of some _16 & _64 bit syscalls tests in LTP. I have taken this trivial ones, and, would leave other porting to you. Signed-Off-By: Subrata Modak <subrata@linux.vnet.ibm.com>. by subrata_modak · 16 years ago
  29. c4ef480 Integrate execution of epoll() syscall testcase. Signed-Off-By: Subrata Modak <subrata@linux.vnet.ibm.com>. by subrata_modak · 16 years ago
  30. a20cb4a Addition of additional epoll() test cases run to LTP. Signed-Off-By: Subrata Modak <subrata@linux.vnet.ibm.com>. by subrata_modak · 16 years ago
  31. df5ac33 I found no reason why they should not be run: Signed-Off-By: Subrata Modak <subrata@linux.vnet.ibm.com>. by subrata_modak · 16 years ago
  32. ac2be3d I found no reason why they should not be run: Signed-Off-By: Subrata Modak <subrata@linux.vnet.ibm.com>. by subrata_modak · 16 years ago
  33. 543473f On ppc64, the modify_ldt cases would not been compiled. So it should be return the message:"System doesn't support execution of the test" instead of an error message. In addition, the Fix_runtest_syscalls.patch also resolved the switch01 running error. Signed-off-by: Jin Bing Guo <guojb@cn.ibm.com>. by subrata_modak · 16 years ago
  34. e61e258 Added runtest/syscalls entry for signalfd. Signed-off-by: Masatake YAMATO <yamato@redhat.com>. by subrata_modak · 16 years ago
  35. ed21684 Adding ioctl() testing of all /dev/tty* devices into the default LTP run. Signed-Of-By: Subrata Modak <subrata@linux.vnet.ibm.com> by subrata_modak · 16 years ago
  36. 4f41ee3 The attached patch moves getgid02.c to getegid02.c. Signed-off-by: Masatake YAMATO <yamato@redhat.com>. by subrata_modak · 16 years ago
  37. de78ad0 This can only be tested on a POWER6 machine. A program to test it is attached. --Paul Mackerras. by subrata_modak · 16 years ago
  38. eb7012d I extended getegid testcase to test getegid16, too. Signed-off-by: Masatake YAMATO <yamato@redhat.com>. by subrata_modak · 16 years ago
  39. 34a572a I've extended setgroup test cases can test setgroups16 old system calls. To test, please put attached compat_16.h to ltp/testcases/kernel/syscalls/setgroups; and apply the patch. Signed-off-by: Masatake YAMATO <yamato@redhat.com>. by subrata_modak · 16 years ago
  40. 5a4cf27 Addition of getcpu() syscall to LTP. I have fixed the problem noticed earlier. Hope it will be fine this time. More over I wanted to mention that I have dropped getcpu2.c as it was found to be less relevant for getcpu() testing. Andi had made some suggestions to improve the test, I am submitting this before making all those changes. If possible I will sit and work on Andi's suggestion. Signed-Off-By: Sharyathi Nagesh <sharyath@in.ibm.com>. by subrata_modak · 16 years ago
  41. cbfac50 I propose this new test setuid04 for the setuid syscall. The goal if this test is to check the fsuid is correctly handled by the setuid syscall. To do so, the test create a testfile as root with permission 0644, then do a setuid and try to open the file RDWR. This last open must fail since the process with new UID is not allowed to open the file on write. In a second step, the test does a fork to check the fsuid is correctly passed to a son and the son behaves correctly regarding files, i.e. it cannot open on write the test file. by subrata_modak · 16 years ago
  42. b1ef993 Intial Addition of sync_file_range() syscall test to LTP. I have developed test cases for sync_file_range() system call which will do the basic sanity (error) checking for the system call. These tests have to be run on 2.6.17 kernel and above. The test cases have been currently tested only on x86 and x86_64 architecture. Also, I have hard coded the system call number in the test case for review purposes and will be later on moving it to linux_syscall_numbers.h file in the LTP framework. The support for PowerPC was provided from 2.6.22 kernel onwards. I had not taken care of it in my previous patch. Now this is addressed. Signed-Off-By: "B. N. Poornima" <poornima@in.ibm.com>. by subrata_modak · 16 years ago
  43. 1382fd1 Addition of get_robust_list() & set_robust_list() syscalls. Signed-Off-By: Ramon de Carvalho Valle <rcvalle@linux.vnet.ibm.com>. by subrata_modak · 16 years ago
  44. 66b8447 Added basic testcases for eventfd() syscall. Signed-off-by: Vijay Kumar <vijaykumar@bravegnu.org>. by subrata_modak · 16 years ago
  45. bbc5be6 Addition of truncate64 syscall test support. Signed-off-by: Masatake YAMATO <yamato@redhat.com>. by subrata_modak · 16 years ago
  46. 4dd9bbe Addition of ftruncate64 syscall test support. Signed-off-by: Masatake YAMATO <yamato@redhat.com>. by subrata_modak · 16 years ago
  47. da53b08 Addition of setgid16 syscall tests. I've tried this task. Please put compat_16.h to testcases/kernel/syscalls/setgid. And apply following patch before rebuilding tests. In addition I removed one getgid() invocation in testcases/kernel/syscalls/setgid/setgid02.c because the returned value is not used anywhere in the program. Signed-off-by: Masatake YAMATO <yamato@redhat.com>. by subrata_modak · 16 years ago
  48. 8dfa1b3 Addition of move_pages() syscall tests. The updated patch fixes the warning messages and removes the print_bitmask function (it's not used) which causes build errors on powerpc. Signed-off-by: Vijay Kumar B. <vijaykumar@bravegnu.org>. by subrata_modak · 16 years ago
  49. c5792c9 Porting of io_destroy(), io_getevents(), io_setup() & io_submit() syscall tests from Crackerjack to LTP, by Masatake YAMATO <yamato@redhat.com>. by subrata_modak · 16 years ago
  50. 06e466f This was ported from the Crackerjack Project by Masatake YAMATO <yamato@redhat.com>. by subrata_modak · 16 years ago
  51. cd6dc3f I've ported a testcase for gettid() from crackerjack to ltp. I've added a directory ltp/testcases/kernel/syscalls/gettid. Signed-off-by: Masatake YAMATO <yamato@redhat.com> by subrata_modak · 16 years ago
  52. 2743968 utimensat() syscall was introduced from linux-2.6.22 onwards. Michael wrote the initial testcases, and, the same is being contributed to LTP under GPLv2. I worked out a patch for this. Though this is not using LTP specific libraries at the moment. But the tests run well and tests 99 separate variations. Michael has written it through itś length and breadth. I generated the code coverage (9.2%) over 2.6.25-gcov kernel, which however was not built with <make allmodconfig> option. Please see it attached along with a draft man page of utimensat(), created by Michael. Let us know how do you feel about this test. We can then go ahead and add this to LTP. Signed-off-by Michael Kerrisk <mtk.manpages@googlemail.com>. Signed-off-by: Subrata Modak <subrata@linux.vnet.ibm.com>. by subrata_modak · 16 years ago
  53. af2c9ef These tests were contributed by the timerfd() syscall developer Davide Libenzi <davidel@xmailserver.org>. by subrata_modak · 16 years ago
  54. bb52b85 According to Ulrich Drepper, times02 test is bogus (at least for archs which report return value and error in the same value) and times has no reserved error code. So following patch removes times02 from testsuite and moves times03 test to times02. For more information please see http://sources.redhat.com/ml/libc-alpha/2008-04/msg00054.html and http://sources.redhat.com/ml/libc-alpha/2008-04/msg00055.html. Signed-off-by: S.Çağlar Onur <caglar@pardus.org.tr> by subrata_modak · 16 years ago
  55. 122c603 Testcases contributed by Sharyathi Nagesh <sharyath@in.ibm.com> by subrata_modak · 17 years ago
  56. 498546d New Test Cases sendfile05 sendfile06 and sendfile07 for sendfile and sendfile64 syscall, by Masatake YAMATO <yamato@redhat.com> by subrata_modak · 17 years ago
  57. b752e85 Added sendfile64 support and new testcase sendfile04.c in this regard, by Masatake YAMATO <yamato@redhat.com> by subrata_modak · 17 years ago
  58. bad4dde New posix_fadvise and fadvise64 Testcases contributed by Masatake YAMATO <yamato@redhat.com> by subrata_modak · 17 years ago
  59. bf831b5 Ricardo (rsalveti@linux.vnet.ibm.com) added another testcase for remap_file_pages() syscall for better error checking by subrata_modak · 17 years ago
  60. fcfd160 Ported this to LTP Format by subrata_modak · 17 years ago
  61. 413ec14 "rsalvetidev@linux.vnet.ibm.com" says that this version can handle when the distro has MAX_SWAPFILES as 30 or 32 by subrata_modak · 17 years ago
  62. d2c5648 "dmonakhov@openvz.org" added this test case to check for "fault in pages readable" functionality by subrata_modak · 17 years ago
  63. 9afc5e5 Added "inotify" testcase execution by subrata_modak · 17 years ago
  64. c5c8402 Removing "alarm04.c" & "sig_rev.c" as they are no more valid, fixes Bug no."1236586", pointed by <Sharyathi Nagesh> by subrata_modak · 17 years ago
  65. 0b10879 new vmsplice test from Yi CDL Yang by vapier · 18 years ago
  66. 073ad12 new faccessat test from Yi CDL Yang by vapier · 18 years ago
  67. 6c81d77 new fchmodat test from Yi CDL Yang by vapier · 18 years ago
  68. 8a63ecb new readlinkat test from Yi CDL Yang by vapier · 18 years ago
  69. 460557a new symlinkat test from Yi CDL Yang by vapier · 18 years ago
  70. aab2ac0 new linkat test from Yi CDL Yang by vapier · 18 years ago
  71. b0493c8 new renameat test from Yi CDL Yang by vapier · 18 years ago
  72. 3688c12 new unlinkat test from Yi CDL Yang by vapier · 18 years ago
  73. d2816c4 add new fstatat test by Yi CDL Yang by vapier · 18 years ago
  74. 6eeb151 add new futimesat test by Yi CDL Yang by vapier · 18 years ago
  75. 4aaf10b openat test by Yi CDL Yang by vapier · 18 years ago
  76. 032481e fchownat test by Yi CDL Yang by vapier · 18 years ago
  77. d780ff6 mknodat test by Yi CDL Yang by vapier · 18 years ago
  78. dfa737c mkdirat test by Yi CDL Yang by vapier · 18 years ago
  79. c033f49 splice/tee tests by Yi CDL Yang by vapier · 18 years ago
  80. 112fa15 Temporarily disabling fcntl27 and fcntl28 from running by default by mreed10 · 18 years ago
  81. d0223fd Added new fcntl() test contributed by Jacky Malcles to test opening with O_WRONLY by robbiew · 19 years ago
  82. 783bc45 Added test for statvfs() from Prashant P Yendigeri. by robbiew · 19 years ago
  83. d405600 Removed umount04. by robbiew · 19 years ago
  84. af04f6e Added test for getcontext() by robbiew · 19 years ago
  85. e972ba5 Added additional test for mlockall(). by robbiew · 19 years ago
  86. 41b868b Added getdtablesize() test. by robbiew · 19 years ago
  87. 3815a9d Added pselect01 test. by robbiew · 19 years ago
  88. 7937de6 Added new fcntl tests to scenario. by robbiew · 19 years ago
  89. 7ba4dfb Added getpagesize() test. by robbiew · 19 years ago
  90. 869e9a4 Commented out fcntl16 b/c it has errors and needs to be fixed or removed. by robbiew · 19 years ago
  91. bea3322 uncommented swapon() tests...don't know why they were commented out in the by robbiew · 20 years ago
  92. ee9951a added new paging tests, mincore and madvise by mridge · 20 years ago
  93. 7b78279 Added a new test for bind() written by Dan Jones. by robbiew · 20 years ago
  94. df9ae7e Add new security tests to syscalls testsuite by mridge · 20 years ago
  95. 25ae545 Created 2 new testcases to test the fcntl() call with the F_SETLEASE option. by robbiew · 20 years ago
  96. e493ffb I'm removing this system call test from the /runtest scripts. The personality() system call is poorly documented and difficult to figure out how to use by looking at the different architecture specific kernel files. by robbiew · 21 years ago
  97. a30214a Commented out time/stime tests b/c they are obsoleted by gettimeofday/settimeofday by robbiew · 21 years ago
  98. 38bcfbf Removed munlock03. by robbiew · 21 years ago
  99. 6919a59 Added munlock03. by robbiew · 21 years ago
  100. 3d354b6 Added clone07. by robbiew · 21 years ago