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. ec6edca Add missing newline at end of file by Chris Dearman · 12 years ago
  11. e683a86 Remove all unwanted references to TESTDIR. by Garrett Cooper · 14 years ago
  12. 1e6f5a6 Resolving all compile errors via a script by Garrett Cooper · 14 years ago
  13. 1569799 Fix some tests. Remove all externs to Tst_count. by Garrett Cooper · 14 years ago
  14. 7d0a4a5 Cleanup style and get rid of conflicts problems. by Garrett Cooper · 14 years ago
  15. 2c28215 Style and conformance changes. by Garrett Cooper · 14 years ago
  16. 5374050 Merge branch 'master' into ltp-broom by Garrett Cooper · 14 years ago
  17. e1f008e Fix compile. by Garrett Cooper · 14 years ago
  18. 43088e1 Merge branch 'master' of ssh://ltp.git.sourceforge.net/gitroot/ltp/ltp by Garrett Cooper · 14 years ago
  19. 1e2d301 Fix compile error, warnings, etc. by Garrett Cooper · 14 years ago
  20. 60fa801 More meaningful cleanup with making options parsing errors consistent. by Garrett Cooper · 14 years ago
  21. 45e285d Remove useless casts. by Garrett Cooper · 14 years ago
  22. 4aafc28 The mq_timedreceive01.c test defines _XOPEN_SOURCE 500 on the beginning but this causes missing prototypes for seteuid() and mq_timedreceive() as they need _XOPEN_SOURCE >= 600. Following patch fixes that. Signed-off-by: Cyril Hrubis chrubis@suse.cz. by Subrata Modak · 14 years ago
  23. 266ec97 Change use of signal to sigaction for more reliability, fix time issue: by subrata_modak · 15 years ago
  24. 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
  25. ef2c471 [PATCHv2] Fix to set the signal handler of SIGINT in mq_timedreceive01: The test case mq_timedreceive01 does not register the signal handler of SIGINT, so the problam will be terminated by SIGINT from child process. This patch fixed the problem. And also fixed the following compile warning. by subrata_modak · 15 years ago
  26. 5376952 This patch fixes compiler warnings for implicit function declarations, particularly snprintf and usleep, in mq_notify and mq_timedreceive. Note that although the functions are used in common_j_c.h, the macros have to be defined in the c files that include it, before any other header. Signed-off-by: Jiri Palecek <jpalecek@web.de>. by subrata_modak · 15 years ago
  27. 4b0ff93 Add/Port mq_timedreceive01 test for mq_timedreceive() syscall. Signed-off-by: Manas Kumar Nayak <maknayak@in.ibm.com>. by subrata_modak · 15 years ago