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. 0b9589f testcases: Constify char *msg variable. by Cyril Hrubis · 10 years ago
  4. c57fba5 testcases/kernel/syscalls: clean up old style prototypes by Mike Frysinger · 10 years ago
  5. fdce7d5 Another semiautomated cleanup. by Cyril Hrubis · 11 years ago
  6. d59a659 s/Tst_count/tst_count/ to avoid CamelCase by Caspar Zhang · 11 years ago
  7. 354ebb4 cleanup code indent by Wanlong Gao · 12 years ago
  8. 89af32a Another semiautomated cleanup. by Cyril Hrubis · 12 years ago
  9. 4548c6c Update FSF address by Wanlong Gao · 12 years ago
  10. 3f3baa2 mq_timedsend01: do not write out of the array boundaries. by Carmelo AMOROSO · 13 years ago
  11. e683a86 Remove all unwanted references to TESTDIR. by Garrett Cooper · 14 years ago
  12. cd324c5 Fix compile. by Garrett Cooper · 14 years ago
  13. 1569799 Fix some tests. Remove all externs to Tst_count. by Garrett Cooper · 14 years ago
  14. 2c28215 Style and conformance changes. by Garrett Cooper · 14 years ago
  15. 60fa801 More meaningful cleanup with making options parsing errors consistent. by Garrett Cooper · 14 years ago
  16. 45e285d Remove useless casts. by Garrett Cooper · 14 years ago
  17. 266ec97 Change use of signal to sigaction for more reliability, fix time issue: by subrata_modak · 15 years ago
  18. 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
  19. fc114ed Add/Port mq_timedsend01 test for mq_timedsend() syscall. Signed-off-by: Manas Kumar Nayak <maknayak@in.ibm.com>. by subrata_modak · 15 years ago