1. f72ca5b lib: add tst_res_hexd for newlib by Jan Stancek · 8 years ago
  2. bbdb9f7 lib: Add new test library API by Cyril Hrubis · 8 years ago
  3. 3e60f62 lib: tst_res: Cleanup. by Cyril Hrubis · 8 years ago
  4. ec2765c lib: Restore tst_brk & tst_res in ltpapicmd by Cyril Hrubis · 9 years ago
  5. 6bb766e lib: Get rid of tst_res() and tst_brk() by Cyril Hrubis · 9 years ago
  6. d1e794d lib: Get rid of unused tst_require_root() callback by Cyril Hrubis · 9 years ago
  7. 605fa33 Get rid of TEST_CLEANUP by Cyril Hrubis · 9 years ago
  8. 8ab80e7 Remove dead code by Cyril Hrubis · 10 years ago
  9. 927a15c lib: implement TRERRNO by Jan Stancek · 10 years ago
  10. 8c1e0b3 lib/tst_res.c: introduce tst_record_childstatus() by Xiaoguang Wang · 10 years ago
  11. a161c6f lib/tst_res.c: make tst_brkm() and tst_resm() output more informative message by Xiaoguang Wang · 10 years ago
  12. cdfe337 remove meaningless TRETR flag by Xiaoguang Wang · 10 years ago
  13. 6f6878f pan/ltp-pan.c: add statistics about not fully tested testcases by Xiaoguang Wang · 10 years ago
  14. 1a6f68a lib/tst_sig.c: output signal name when got unexpected signal by Xiaoguang Wang · 10 years ago
  15. 89293b2 lib/tst_res.c: synchronize access to tst_res functions by Alexey Kodanev · 10 years ago
  16. 55d8ae5 tst_res: constify char buffers were possible by Mike Frysinger · 10 years ago
  17. 3f0510c lib: Flush test output on FORK_OR_VFORK() by Cyril Hrubis · 10 years ago
  18. ee75ce3 lib: Fix a few warnings. by Cyril Hrubis · 10 years ago
  19. ddd3b85 lib: Add tst_fork() and update guidelines by Cyril Hrubis · 10 years ago
  20. 9f42be1 lib: fix noreturn warnings by Mike Frysinger · 10 years ago
  21. 7b20026 lib: tst_res: Add more errnos. by Cyril Hrubis · 11 years ago
  22. 226edbe tst_res: add some common errno values by Wang, Xiaoguang · 11 years ago
  23. fc41661 usctest.h: Remove dumbious _USC_LIB_ ifdefs. by Cyril Hrubis · 11 years ago
  24. 06f9fe4 include: Move a few more defs to private header. by Cyril Hrubis · 11 years ago
  25. 04a34ba Create a function tst_resm_hexd() to print a buffer in hex by Alexey Kodanev · 11 years ago
  26. d59a659 s/Tst_count/tst_count/ to avoid CamelCase by Caspar Zhang · 11 years ago
  27. 354ebb4 cleanup code indent by Wanlong Gao · 12 years ago
  28. fed9641 Fix FSF address by Wanlong Gao · 12 years ago
  29. 37550cf Remove whitespace at end of line by Chris Dearman · 12 years ago
  30. d2e9f84 lib: Fix tst_print() by Cyril Hrubis · 12 years ago
  31. 41176c3 Break some bad behavior. by Garrett Cooper · 14 years ago
  32. 5503357 Disable bounds checking with printouts in tst_brk. by Garrett Cooper · 14 years ago
  33. 43891b7 Fix reentrancy. by Garrett Cooper · 14 years ago
  34. 68d76e0 Make tst_brk reentrant. by Garrett Cooper · 14 years ago
  35. 1e6f5a6 Resolving all compile errors via a script by Garrett Cooper · 14 years ago
  36. e911d38 Remove references to Tst_nobuf. by Garrett Cooper · 14 years ago
  37. eacf2a3 Account for reporting flags appended to ttype in tst_brk. by Garrett Cooper · 14 years ago
  38. 5374050 Merge branch 'master' into ltp-broom by Garrett Cooper · 14 years ago
  39. 9f2555e Screw it. Just call tst_exit at the end of each tst_brkm invocation now. by Garrett Cooper · 14 years ago
  40. d720444 Crap. Checked in code on the wrong branch. by Garrett Cooper · 14 years ago
  41. 43088e1 Merge branch 'master' of ssh://ltp.git.sourceforge.net/gitroot/ltp/ltp by Garrett Cooper · 14 years ago
  42. 5b87544 Fix errors and warnings in previous set of commits. by Garrett Cooper · 14 years ago
  43. 8798ebf Remove all loop related logic. by Garrett Cooper · 14 years ago
  44. 16e681e Intentionally exit when tst_exit == NULL. by Garrett Cooper · 14 years ago
  45. a126241 Merge remote branch 'origin' into ltp-broom by Garrett Cooper · 14 years ago
  46. 60cd167 Fix stupid errors. by Garrett Cooper · 14 years ago
  47. d3e6e8f Fail quickly w/ tst_res* APIs from non-main proc. by Garrett Cooper · 14 years ago
  48. 903910d More cleanup. by Garrett Cooper · 14 years ago
  49. 6bfb01e Start cleanup for tst_brkloop*. by Garrett Cooper · 14 years ago
  50. 7113a0c Avoid unintended side-effects with errno being overwritten by accident with fpri by yaberauneya · 15 years ago
  51. 3311a25 fix possible tst_xxx buffer overrun: Following patch fixes tst_** functions that would segfault for printing messages longer than 2048 chars. Now such message is truncated. Signed-off-by: <chrubis@suse.cz>. by subrata_modak · 15 years ago
  52. 995d5a3 decode ENAMETOOLONG by vapier · 15 years ago
  53. f88c09e use a printf modifier to shut up gcc warnings (should make some internal tst_* funcs that take raw va_args so we can drop this EXPAND_VAR_ARGS() hack) by vapier · 15 years ago
  54. 45a8ba0 trim trailing whitespace by vapier · 15 years ago
  55. 9799ea1 extend the test result to a bit field so we can extend the output further by vapier · 15 years ago
  56. 88c166c Test library cleanups: Removing no longer used code from test.h eg. test_error.c is no longer in ltp, and the same for t_res.c so there is no need to include function prototypes for these. Adding void to functions that doesn't take any parameters; tst_exit() -> tst_exit(void); so code that pases parameters to these is not compileable any more. Also fixes all test broken by that change. As parameters passed to tst_exit() are ignored anyway it's quite safe to just remove them; but I'would rather see someone take a closer look. Code cleanups and fixes in tst_res.c: by subrata_modak · 15 years ago
  57. f0b9e3a Fix double unescaping error in tst_resm. when calling tst_resm (and several other tst_* functions) with a string containinig "%%", tst_resm would not output a percent sign, but formats some data instead (eg. "%%fs" in fork05 test ends up as "0.00000s". This is because once the escapes have been processed by tst_resm, they are processed again by tst_res called by tst_resm. The attached patch fixes this behaviour.. Signed-off-by: Jiri Palecek <jpalecek@web.de>. by subrata_modak · 16 years ago
  58. 640adf4 tst_require_root(): unify root checking with this function by vapier · 16 years ago
  59. de0e4d7 punt useless local prototype for fdopen() -- stdio.h already provides this by vapier · 16 years ago
  60. 1cef7f1 Randy temporarily fixed the var_args expander in lib/tst_res.c by subrata_modak · 17 years ago
  61. 6eaecb2 Applied Coldfire patch from Jody McIntyre: by robbiew · 19 years ago
  62. d34d581 Applied fixes by Paul J.Y. Lahaie to implement support for UCLinux by robbiew · 19 years ago
  63. cc2e555 New additions: by alaffin · 24 years ago