1. aabb834 Include usctest.h in test.h by Cyril Hrubis · 9 years ago
  2. 605fa33 Get rid of TEST_CLEANUP by Cyril Hrubis · 9 years ago
  3. c57fba5 testcases/kernel/syscalls: clean up old style prototypes by Mike Frysinger · 10 years ago
  4. fdce7d5 Another semiautomated cleanup. by Cyril Hrubis · 11 years ago
  5. 359980f rename syscall() macro to ltp_syscall() by Jan Stancek · 11 years ago
  6. 354ebb4 cleanup code indent by Wanlong Gao · 12 years ago
  7. 4548c6c Update FSF address by Wanlong Gao · 12 years ago
  8. 75b5a4b Fix testcase. by Garrett Cooper · 14 years ago
  9. 5262667 Fix some signalhandling code. by Garrett Cooper · 14 years ago
  10. e683a86 Remove all unwanted references to TESTDIR. by Garrett Cooper · 14 years ago
  11. 1569799 Fix some tests. Remove all externs to Tst_count. by Garrett Cooper · 14 years ago
  12. 2c28215 Style and conformance changes. by Garrett Cooper · 14 years ago
  13. 5374050 Merge branch 'master' into ltp-broom by Garrett Cooper · 14 years ago
  14. 60fa801 More meaningful cleanup with making options parsing errors consistent. by Garrett Cooper · 14 years ago
  15. 45e285d Remove useless casts. by Garrett Cooper · 14 years ago
  16. 76a720a While executing the ltp on an nfs root mounted system, I faced a problem with some of the ltp test cases. These tests either did not close their file descriptors or did no unmap the mmaped files. This results in a failures while trying to clean up the temporary directory of the testcase. I have fixed all of the above tests with the following patch. Signed-off-by: Darshak P Shah<darshaks@linux.vnet.ibm.com>, by Subrata Modak · 14 years ago
  17. fc7a2a5 Fix compilation with older glibc releases by restoring the POLLHDRDUP constant on-demand definition. by yaberauneya · 15 years ago
  18. 2f76506 1. Use SIGSETSIZE from ltp_signal.h by yaberauneya · 15 years ago
  19. ea695e4 Checking in possible final / intermediate solution to ppoll01 not functioning on mips32. I say intermediate because of the following message: by yaberauneya · 15 years ago
  20. d07b595 The following patch adds a signal() syscall to the ppoll01 testcase. The testcase has a signal handler in it but this signal handler is not registered with the kernel through the signal() syscall. Without the patch the testcase fails when it sends a SIGINT to itself as part of one of the case of the test run. Signed-off-by: Chandru S <chandru@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  21. 447cb96 Add a test for race-free operation of ppoll: Hello, after the previous patch, this patch adds a test to test a use of ppoll() without races (ie. the intended use of ppoll). It blocks the signal, schedules a signal to be delivered and expects ppoll to return EINTR (and never lose the signal. Signed-off-by: Jiri Palecek <jpalecek@web.de>. by subrata_modak · 15 years ago
  22. 2b36c90 Fix the logic of ppoll01 test: According to POSIX, a file descriptor is considered ready for writing when a call to write() would not block, even when it returns an error (other than EAGAIN). Thus, a file descriptor opened for reading is ready for writing. This patch reflects that in the test. Signed-off-by: Jiri Palecek <jpalecek@web.de>. by subrata_modak · 15 years ago
  23. d37e1b1 Add a count parameter to create_sig_proc: there were complaints about some tests (ppoll01) hanging sometimes. I've created this patch to address the issue. This should allow testing inherently racy conditions, such as a syscall returning EINTR upon signal handler execution. The problem here is that the signal could actually arrive before the syscall gets executed, which results in the test waiting for it forever. The solution is adding a parameter that would allow to specify how much signals a particular test expects - a racy test would ask for a large number of signals sent, so it will get one even if some were missed. Tests, which test behavior, which is not racy (eg. pselect()) should only request a single signal. Note that you need to manually kill the child process delivering the signals when you don't need them, if you ordered more signals than you actually handle. Also, this patch resets signal handling in child process created in create_sig_proc. This should avoid the child calling the parent's signal handlers and interfering with parent's cleanup process. Signed-off-by: Jiri Palecek <jpalecek@web.de>. by subrata_modak · 15 years ago
  24. d076204 Define some syscall numbers in the linux_syscall_numbers.h file, not to get build failures or crappy results on other architectures which lack them. Signed-off-by: Jiri Palecek <jpalecek@web.de>. by subrata_modak · 15 years ago
  25. beedd5d Add/Port ppoll01 test for ppoll() syscall. Signed-off-by: Manas Kumar Nayak <maknayak@in.ibm.com>. by subrata_modak · 15 years ago