1. d59a659 s/Tst_count/tst_count/ to avoid CamelCase by Caspar Zhang · 12 years ago
  2. 354ebb4 cleanup code indent by Wanlong Gao · 12 years ago
  3. 89af32a Another semiautomated cleanup. by Cyril Hrubis · 12 years ago
  4. fed9641 Fix FSF address by Wanlong Gao · 12 years ago
  5. 4548c6c Update FSF address by Wanlong Gao · 12 years ago
  6. ec6edca Add missing newline at end of file by Chris Dearman · 12 years ago
  7. e653fac More minor cleanup. by Garrett Cooper · 14 years ago
  8. 58dc8e6 Make execve03 testcase 100% conformant and safe. by Garrett Cooper · 14 years ago
  9. c585a27 Fix testcases and make the overall cp operations consistent. by Garrett Cooper · 14 years ago
  10. 775c33d Fix attempt at cleaning up execve testcases. by Garrett Cooper · 14 years ago
  11. 6679357 Improve testcase. by Garrett Cooper · 14 years ago
  12. 0ae003b Fix remaining compilation errors. by Garrett Cooper · 14 years ago
  13. 5cf94a2 Turn reminder into a comment from a syntax error. by Garrett Cooper · 14 years ago
  14. 1e6f5a6 Resolving all compile errors via a script by Garrett Cooper · 14 years ago
  15. 1569799 Fix some tests. Remove all externs to Tst_count. by Garrett Cooper · 14 years ago
  16. 8dca422 Fix some testcases. by Garrett Cooper · 14 years ago
  17. 7d0a4a5 Cleanup style and get rid of conflicts problems. by Garrett Cooper · 14 years ago
  18. 2c28215 Style and conformance changes. by Garrett Cooper · 14 years ago
  19. 5374050 Merge branch 'master' into ltp-broom by Garrett Cooper · 14 years ago
  20. e1f008e Fix compile. by Garrett Cooper · 14 years ago
  21. 43088e1 Merge branch 'master' of ssh://ltp.git.sourceforge.net/gitroot/ltp/ltp by Garrett Cooper · 14 years ago
  22. 60fa801 More meaningful cleanup with making options parsing errors consistent. by Garrett Cooper · 14 years ago
  23. 45e285d Remove useless casts. by Garrett Cooper · 14 years ago
  24. ef77253 1. Please see README.mk-devel for a full description of the changes by yaberauneya · 15 years ago
  25. e789978 execve: remove obsoleted test case execve04. Since latest kernel do execve(2) without get file descriptor(kernel commit e7b9b550f53e81ea38e71d322d6f95730df058a2), it only use one file struct. This cause the case execve04 which test for set EMFILE errno obsoleted. This patch removed test case execve04, and changed the index of the test cases after execve04. Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>. by subrata_modak · 15 years ago
  26. 56207ce Coding Syle Cleanups. Signed-Off-By: <michal.simek@petalogix.com>. by subrata_modak · 16 years ago
  27. b1ac4f7 Execve04: No Such File: Execve04 test case can fail due to the required file not found. It because it uses a relative path, so it depends on where to run the test. This patch fixes it by using a absolute path, and also make sure it can handle a long name. Signed-off-by: CAI Qian <caiqian@cclom.cn>. by subrata_modak · 16 years ago
  28. bdbaec5 Clean Trailing Tab: Signed-off-by: Michal Simek <monstr@monstr.eu>. by subrata_modak · 16 years ago
  29. 4bb656a Clear Trailing Whitespace. Signed-off-by: Michal Simek <monstr@monstr.eu>. by subrata_modak · 16 years ago
  30. 43337a3 Fix return(0) to return 0. Signed-off-by: Michal Simek <monstr@monstr.eu>. by subrata_modak · 16 years ago
  31. 4b13c89 [Patch 2/2] Used named PIPE in test cases for NOMMU arch instead of anonymous: In NOMMU arch, anonymous PIPE can't be accessed in child process if it is started by vfork/execve. This patch uses named PIPE instead and changes related test cases accordingly. Signed-off-by: Sonic Zhang <sonic.adi@gmail.com>. by subrata_modak · 16 years ago
  32. 7c77ea4 This test case requires write permission for the dummy program. It would fail for those who put LTP on an read-only environment. So this patch copies the dummy test program to and performs the test in a private directory. p.s. this patch copy the one Renaud Lottiaux sent for execve02.c. Signed-Off-By: Roy Lee <roylee17@gmail.com>. by subrata_modak · 16 years ago
  33. 11fbfdd This patch fixes the error, that code exhausting the file descriptor table in execve04 test actually doesn't exhaust the fd table at all. Signed-off-by: Jiri Palecek <jpalecek@web.de>. by subrata_modak · 16 years ago
  34. 635f2a4 Fix success detection in execve04 test: by subrata_modak · 16 years ago
  35. ddd0f94 Find attached patchset which address some serious compiler warning fixes spotted by GCC4.1 (SLES10 SP2) and GCC4.3 (openSUSE Factory). Fix warning about _is_ unused variable (note the difference between "may" and "is" unused!). Unintended mixup with *pwd and *path. *path never gets set. by subrata_modak · 16 years ago
  36. a4b89a8 The following patches fix execve05 for error reporting when execve() succeeds, and exit synchronization in loaded systems. The last two patches are minor cleanups. cleanup() is reserved for the main test process. In children, call exit() instead. Signed-off-by: Louis Rilling <Louis.Rilling@kerlabs.com>. by subrata_modak · 16 years ago
  37. 7432850 The following patches fix execve05 for error reporting when execve() succeeds, and exit synchronization in loaded systems. The last two patches are minor cleanups. In a child, calling waitpid() to wait for the death of sibling child is simply non-sense. Moreover in execve05, the second child does not need such synchronization. Remove it. Signed-off-by: Louis Rilling <Louis.Rilling@kerlabs.com>. by subrata_modak · 16 years ago
  38. dfe328c The following patches fix execve05 for error reporting when execve() succeeds, and exit synchronization in loaded systems. The last two patches are minor cleanups. In execve05, the first child must keep a file open at least until the second child tries to execve() this file. However the test achieves this with a sleep of 10s, which may fail on loaded systems. This patch replaces this (arbitrary) sleep with a pipe-based synchronization, where the parent notifies the first child once the second child has terminated. Signed-off-by: Louis Rilling <Louis.Rilling@kerlabs.com>. by subrata_modak · 16 years ago
  39. ed56540 The following patches fix execve05 for error reporting when execve() succeeds, and exit synchronization in loaded systems. The last two patches are minor cleanups. execve05 checks that execve() fails if a process has opened the file with write access. However, in case the test fails and execve() succeeds, the default binary (test3) has return code 0, which is interpreted as test success. We get output like that: by subrata_modak · 16 years ago
  40. e272235 execve02 checks that execve() fails if the caller does not have executable permission on the file. However, in case the test fails and execve() succeeds, the default binary (test3) has return code 0, which is interpreted as test success. We get output like that: by subrata_modak · 16 years ago
  41. 9a0748e Put-libtestsuite-to-a-more-common-place.patch by subrata_modak · 16 years ago
  42. 8791f67 Make-sync_pipe-API-more-generic-and-update-related.patch. by subrata_modak · 16 years ago
  43. 4374a71 This patch fix a concurrency issue in execve02. In case of concurrent executions, all tasks was using the same file, changing its mode and leading to invalid mode for some of them. This patch creates a private tmp directory for each task, copies the test file in it and performs all the tests using this private file. Regards Renaud Lottiaux <Renaud.Lottiaux@kerlabs.com> by subrata_modak · 17 years ago
  44. 0e447fa I think there is a problem with the previous patch. Since you call the wait_son_startup() function after the fork() and before the test on the PID variable, the father AND the son will wait on the pipe, leading to a dead-lock. I suggest to move the wait_son_startup() calls after the pid test. Renaud Lottiaux <Renaud.Lottiaux@kerlabs.com>. Changes by Roy Lee <roylee17@gmail.com>. by subrata_modak · 17 years ago
  45. 3711328 In the expected scenario, it attempts to execve(2) a file which is being opened by another process for writing fails with ETXTBS. On a loaded system, however, the child which does execve might get access to the file before the other child which opens it and result in a unexpected opening fail. By Roy Lee <roylee17@gmail.com> by subrata_modak · 17 years ago
  46. dad6e1a Breno Leitao (leitao@linux.vnet.ibm.com) fixed these for running on NFS mounted systems by subrata_modak · 17 years ago
  47. 62b16cf random updates from Jane Lv for uClinux by vapier · 18 years ago
  48. 5366cb0 standardize makefiles (punt UCLINUX/COLDFIRE cruft, build everything with -Wall and user-optimizations, remove pointless targets in favor of implicit ones, etc...) by vapier · 18 years ago
  49. 5ede20c Backed out the _USC_LIB_ change, b/c it was breaking on PowerPC platform under FC6-Test1. by robbiew · 18 years ago
  50. 6a4a0d2 -D_USC_LIB_ can be used on all arches, not just COLDFIRE by vapier · 18 years ago
  51. aa35472 dont declare setup/cleanup extern since they arent by vapier · 18 years ago
  52. 0722a2b as reported by Jane Lv, mmap() returns an unsigned value (MAP_FAILED) upon error, so checking with <= 0 will not work by vapier · 19 years ago
  53. 5b35493 make the -F option a bit smarter by vapier · 19 years ago
  54. 3177b1d unbreak test by adding back in the sprintf() i wrongly dropped in a previous commit by vapier · 19 years ago
  55. 019d8ef remove extraneous output and improve output when we do issue messages by vapier · 19 years ago
  56. b2eb9de translate the errno value by vapier · 19 years ago
  57. cff4af0 remove extraneous whitespace usage in tst_* functions by vapier · 19 years ago
  58. 7b7103c kill off debug output that shouldnt be shown at normal runtime by vapier · 19 years ago
  59. 6eaecb2 Applied Coldfire patch from Jody McIntyre: by robbiew · 19 years ago
  60. d34d581 Applied fixes by Paul J.Y. Lahaie to implement support for UCLinux by robbiew · 19 years ago
  61. 066dbd4 Applied long path name patch from Michael Vieths: by robbiew · 20 years ago
  62. 3578f4a Changes to close open fileHandle to fix NFS test failure by mridge · 20 years ago
  63. 100a443 warnings cleanup by robbiew · 22 years ago
  64. f9cb916 warnings cleanup by robbiew · 22 years ago
  65. f7dc1be Applied patch from Andreas Jaeger: by robbiew · 22 years ago
  66. 5475776 Applied Vasan Sundar's Makefile patches. by robbiew · 22 years ago
  67. da85874 fix error with child not exiting properly in execve02.c from Colin Gibbs by plars · 22 years ago
  68. 1ad8451 Several fixes for 64-big from Gerhard Tonn. by plars · 22 years ago
  69. bc4c280 *** empty log message *** by robbiew · 23 years ago
  70. 16dc53f Separate make and make install by plars · 23 years ago
  71. b079c39 Corrected the retval updating code. by robbiew · 23 years ago
  72. d0571e7 Corrected retval error code updating. by robbiew · 23 years ago
  73. 95a5d55 Corrected the race condition. by robbiew · 23 years ago
  74. d97cba7 Corrected race condition within test. by robbiew · 23 years ago
  75. b851d7b Corrected the race condition. by robbiew · 23 years ago
  76. 57be9f8 Discovered problem was not in code, but in runtest script. Undid previous change. by robbiew · 23 years ago
  77. a544519 Made changes so test can run correctly under pan. by robbiew · 23 years ago
  78. c5f2e37 Modified test so it can pass under root user. by robbiew · 23 years ago
  79. dd51315 *** empty log message *** by plars · 23 years ago
  80. 865695b restructuring work done, and adding about 400 testcases by plars · 23 years ago