1. 8967f96 Update references with my old legal name/email to my current name/email address by Ngie Cooper · 7 years ago
  2. ada988c replace sigval_t with union sigval by Khem Raj · 9 years ago
  3. 333c3a8 clock_settime02: fix for linux kernel >= 4.2 by Cyril Hrubis · 9 years ago
  4. aee1076 clock_settime02: Cleanup. by Cyril Hrubis · 9 years ago
  5. d1e794d lib: Get rid of unused tst_require_root() callback by Cyril Hrubis · 9 years ago
  6. d6d11d0 Introduce tst_parse_opts() by Cyril Hrubis · 9 years ago
  7. aabb834 Include usctest.h in test.h by Cyril Hrubis · 9 years ago
  8. 63564ce testcsaes: Initialize TST_TOTAL statically. by Cyril Hrubis · 9 years ago
  9. 605fa33 Get rid of TEST_CLEANUP by Cyril Hrubis · 9 years ago
  10. b863a0b Make use of ARRAY_SIZE() by Cyril Hrubis · 10 years ago
  11. cf0d626 Remove all useless NULL casts. by Cyril Hrubis · 10 years ago
  12. 0b9589f testcases: Constify char *msg variable. by Cyril Hrubis · 10 years ago
  13. a2d1595 clock_settime03: do not set outside address space tp by Wanlong Gao · 11 years ago
  14. d59a659 s/Tst_count/tst_count/ to avoid CamelCase by Caspar Zhang · 11 years ago
  15. 359980f rename syscall() macro to ltp_syscall() by Jan Stancek · 11 years ago
  16. 354ebb4 cleanup code indent by Wanlong Gao · 12 years ago
  17. 89af32a Another semiautomated cleanup. by Cyril Hrubis · 12 years ago
  18. fed9641 Fix FSF address by Wanlong Gao · 12 years ago
  19. ec6edca Add missing newline at end of file by Chris Dearman · 12 years ago
  20. 5708536 Add generated files to .gitignore by Chris Dearman · 12 years ago
  21. 03c739d timers: add a new test case leapsec_timer by Lingzhu Xiang · 12 years ago
  22. b552400 expand gitignore coverage by Mike Frysinger · 12 years ago
  23. b7a9504 Clean up clock_settime03.c code. by Cyril Hrubis · 13 years ago
  24. ec544ef clock_settime03: the return value of clock_settime syscall changed by Wanlong Gao · 13 years ago
  25. 72521cf Fix more tests; remove more Tst_count externs. by Garrett Cooper · 14 years ago
  26. 2c28215 Style and conformance changes. by Garrett Cooper · 14 years ago
  27. 5374050 Merge branch 'master' into ltp-broom by Garrett Cooper · 14 years ago
  28. 43088e1 Merge branch 'master' of ssh://ltp.git.sourceforge.net/gitroot/ltp/ltp by Garrett Cooper · 14 years ago
  29. df3eb16 Deal with a lot of annoying style nits. by Garrett Cooper · 14 years ago
  30. a9670cd First crack at cleanup in this subdir. by Garrett Cooper · 14 years ago
  31. 4e94765 Timer related syscalls for LTP test: Signed-off-by: Suzuki K P <suzuki@in.ibm.com>, by Subrata Modak · 14 years ago
  32. c98956b The MAX_CLOCKS supported by the kernel is 16. But the kernel may not have all the clock sources defined in the range 0-15. Hence, to test whether kernel returns error for an INVALID clock source id, we should use the upper limit MAX_CLOCKS (16 at the moment). But to verify the the defined clocks work fine, we should loop through the "list" of clock sources defined for sure. MAX_CLOCKS marsk the end of the clock sources in the array. by Subrata Modak · 14 years ago
  33. a15d642 Add fud for CLOCK_MONOTONIC_RAW, even though (FWIW) it doesn't work on by Garrett Cooper · 14 years ago
  34. 917b2f9 Include definitions for CLOCK_MONOTONIC_COARSE and CLOCK_REALTIME_COARSE by Garrett Cooper · 14 years ago
  35. 1a7f542 Wholesale testcase cleanup. by yaberauneya · 15 years ago
  36. 261d0fb testcases/kernel/include/...: by yaberauneya · 15 years ago
  37. 923b23f Other compiler warning fixes: this is another chunk of compiler warning fixes in LTP tests, related to printf format strings. They have multiple causes: by subrata_modak · 15 years ago
  38. ef77253 1. Please see README.mk-devel for a full description of the changes by yaberauneya · 15 years ago
  39. 0bd2fa8 In reference to the issue with timer_create04 and clock_gettime03 for the kernel version 2.6.29 which was reported in the link: http://www.nabble.com/timer_create-p22376043.html, PFA the patch for fixing the issue. Detail on the issue: A new clockid 'CLOCK_MONOTONIC_RAW' was added since the kernel 2.6.28 (http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.28). This addition caused the above testcases to fail. Now, 5 clock ID's are resent in kernel ver 2.6.28 and later. Signed-off-by: Rohit Verma <rohit.170309@gmail.com>. by subrata_modak · 15 years ago
  40. e8af978 CLOCK_PROCESS_CPUTIME_ID and CLOCK_THREAD_CPUTIME_ID are also supported besides CLOCK_REALTIME and CLOCK_MONOTONIC. That's the cause of the failure of clock_gettime03, timer_create02 and timer_create04. Another cause is that struct sigevent evp is assigned with invalid values when option is 1. That's the cause of the failure of timer_create02 and timer_create03. CLOCK_REALTIME_HR and CLOCK_MONOTONIC_HR have been removed in the later kernel versions, hence the failures in the test. I am still trying to find out if any kernel versions used to support these. CLOCK_PROCESS_CPUTIME_ID and CLOCK_THREAD_CPUTIME_ID are supported from 2.6.12 kernel version onwards and the test case needs to be modified for this change. Also in timer_create02.c, setup_test() case1 needs to be modified so as to make evp NULL instead of its members. Since the testcase behaves differently for different kernel versions, a version check needs to be added for making it pass across versions. I'm removing the HR clocks from the tests along with other changes, by, Anoop V. Chakkalakkal <anoop.vijayan@in.ibm.com> by subrata_modak · 16 years ago
  41. 9cf96d8 use common header for __NR defines by vapier · 18 years ago
  42. 1876065 take a hint from Yi CDL Yang and add tests for all clocks by vapier · 18 years ago
  43. a9a1847 take some fixes from Yi CDL Yang and create a CLOCK list for people to use as well as a func to turn a clock value into a string by vapier · 18 years ago
  44. 6670f84 eat trailing whitespace by vapier · 18 years ago
  45. ef5f40a remove ANYSIG define since it is just fluff by vapier · 18 years ago
  46. bc8a461 move common defines/functions/etc... to one header file so we have to get it right just once by vapier · 18 years ago
  47. 54e1eb3 standardize makefiles by vapier · 18 years ago
  48. 352e694 simpler/dynamic Makefile by vapier · 18 years ago
  49. 8cf8104 add cast to shutup warning by vapier · 18 years ago
  50. d13d74b ugh, dos CRLFs, how i hate you so by vapier · 18 years ago
  51. 27d4a1f Applied some zSeries specific patches from Susanne Wintenberger. by robbiew · 19 years ago
  52. 679cf0a These tests are part of the Open POSIX Test Suite and are now located under by robbiew · 21 years ago
  53. 9d07698 *** empty log message *** by robbiew · 21 years ago
  54. 809f27a Relocated to /testcases/open_posix_testsuite by robbiew · 21 years ago
  55. 847e95b *** empty log message *** by robbiew · 21 years ago
  56. 2692f9e Added 2 tests for clock_settime() from Aniruddha. by robbiew · 21 years ago
  57. 52580e8 *** empty log message *** by robbiew · 21 years ago
  58. b312bf3 Added new tests for clock_gettime() from Aniruddha. by robbiew · 21 years ago
  59. bc67001 *** empty log message *** by robbiew · 21 years ago
  60. 38ff3c4 Removed README file. by robbiew · 21 years ago
  61. 082a332 Added 2 more tests for timer_settime() from Aniruddha by robbiew · 21 years ago
  62. 666839a *** empty log message *** by robbiew · 21 years ago
  63. b0da3a0 relocated defines by robbiew · 21 years ago
  64. 874abba relocated defines by robbiew · 21 years ago
  65. f85fea0 relocated defines to posixtests.h by robbiew · 21 years ago
  66. 6840b5a Relocated definitions to posixtests.h by robbiew · 21 years ago
  67. c8bd0fa Added header file to allow tests to build. by robbiew · 21 years ago
  68. 4bf979a *** empty log message *** by robbiew · 21 years ago
  69. 4ed1fe4 Added header file for POSIX tests. by robbiew · 21 years ago
  70. f9d3350 *** empty log message *** by robbiew · 21 years ago
  71. 259e4cf Added header file to allow tests to build. by robbiew · 21 years ago
  72. b54ad7f Added new timer_delete() tests from Wipro and created header file for POSIX tests. by robbiew · 21 years ago
  73. f334677 Created header file for Open POSIX Test Suite tests. by robbiew · 21 years ago
  74. 1d819a8 Added timer_create() tests from Aniruddha. by robbiew · 21 years ago
  75. 44cdb09 *** empty log message *** by robbiew · 21 years ago
  76. b3134b4 Added nanosleep test from 0.9.0 by robbiew · 21 years ago
  77. 0b70c6e *** empty log message *** by robbiew · 21 years ago
  78. f756722 Applied Vasan's "CFLAGS+=" patch by robbiew · 21 years ago
  79. d00e71c Added tests for clock_getres() from posixtestsuite 0.9.0 by robbiew · 21 years ago
  80. 3c4e1ee Updated to posixtestsuite 0.9.0 by robbiew · 21 years ago
  81. 2108480 Applied Dan Kegel's `ash` compatibility patch. by robbiew · 21 years ago
  82. 52333de Applied Dan Kegel's "\n" removal patch. by robbiew · 21 years ago
  83. d537af2 Applied Andreas Jaeger's patch for library linking: by robbiew · 21 years ago
  84. 66ea9a8 Made changes to allow non-root users to perform a 'make install'. by robbiew · 21 years ago
  85. 5475776 Applied Vasan Sundar's Makefile patches. by robbiew · 21 years ago
  86. 056df34 *** empty log message *** by robbiew · 21 years ago
  87. 0f00545 Added Open POSIX* Testsuite test: timer_settime by robbiew · 21 years ago
  88. 34b32b2 Added Open POSIX* Testsuite test: timer_gettime by robbiew · 21 years ago
  89. 1b8aab4 Added Open POSIX* Testsuite test: timer_getoverrun by robbiew · 21 years ago
  90. 2e3b996 Added Open POSIX* Testsuite test: timer_delete by robbiew · 21 years ago
  91. c11f331 Added Open POSIX* Testsuite test: timer_create by robbiew · 21 years ago
  92. 4d6486a Added Open POSIX* Testsuite test: clock_settime by robbiew · 21 years ago
  93. 64942af Added Open POSIX* Testsuite test: clock_nanosleep by robbiew · 21 years ago
  94. 1bd5bc5 Added Open POSIX* Testsuite test: clock_gettime by robbiew · 21 years ago
  95. 963d69f Added Open POSIX* Testsuite test: clock_getcpuclockid by robbiew · 21 years ago
  96. 958aaa9 Added Makefile for directory. by robbiew · 21 years ago
  97. ebc87a7 Added neccessary include file for the high res timers tests. by robbiew · 21 years ago
  98. 74ec62a Added this readme file to explain why this directory is NOT automatically built. by robbiew · 21 years ago