1. bee0a94 tst_run_cmd: added support for stdout and stderr redirection by Stanislav kholmanskikh · 11 years ago
  2. ef73cc9 lib: add tst_kvercmp2 to compare specific vendor extra kernel versions by Wanlong Gao · 11 years ago
  3. 4bc55ec lib: tst_run_cmd: add tst_run_cmd() to exec specified program by Alexey Kodanev · 11 years ago
  4. 06f9fe4 include: Move a few more defs to private header. by Cyril Hrubis · 11 years ago
  5. 5f8441c include: Remove unused _SC_CRAY_SYSTEM. by Cyril Hrubis · 11 years ago
  6. 812521d lib, include: Move TEMPDIR to private header. by Cyril Hrubis · 11 years ago
  7. 69b772b lib, include: Remove all references to TDIRECTORY. by Cyril Hrubis · 11 years ago
  8. 04a34ba Create a function tst_resm_hexd() to print a buffer in hex by Alexey Kodanev · 11 years ago
  9. d59a659 s/Tst_count/tst_count/ to avoid CamelCase by Caspar Zhang · 12 years ago
  10. 69c2ab0 Add TST_RESOURCE_COPY() to prepare test files. by Cyril Hrubis · 12 years ago
  11. 1924061 Add TST_PROCESS_STATE_WAIT() API. by Cyril Hrubis · 12 years ago
  12. ab8388c Add easy to use API for parent-child synchronization. by Cyril Hrubis · 12 years ago
  13. 4274895 lib: Add functions to ease pseudo fs read/write by Cyril Hrubis · 12 years ago
  14. fed9641 Fix FSF address by Wanlong Gao · 12 years ago
  15. 3b535a8 tools: add tst_ncpus/_max api to get number of CPUS by Wanlong Gao · 12 years ago
  16. 60b1baa /lib/tst_tmpdir indentation and coding style fixes by Marios Makris · 12 years ago
  17. 9ef186f Add attribute noreturn for tst_brkm() too. by Cyril Hrubis · 13 years ago
  18. bc5da68 The functional tests for utime checks if utime updates the by Cyril Hrubis · 14 years ago
  19. 68d76e0 Make tst_brk reentrant. by Garrett Cooper · 14 years ago
  20. e911d38 Remove references to Tst_nobuf. by Garrett Cooper · 14 years ago
  21. aec33cd Clean up and export Forker_pids to cut down on useless extern cruft. by Garrett Cooper · 14 years ago
  22. db97680 Improve prior commits to file. by Garrett Cooper · 14 years ago
  23. a9e49f1 Fix all of the remaining conflicts and some style issues. by Garrett Cooper · 14 years ago
  24. 5374050 Merge branch 'master' into ltp-broom by Garrett Cooper · 14 years ago
  25. 5b87544 Fix errors and warnings in previous set of commits. by Garrett Cooper · 14 years ago
  26. 8798ebf Remove all loop related logic. by Garrett Cooper · 14 years ago
  27. 4a40bd1 Remove more tst_brkloop* references. by Garrett Cooper · 14 years ago
  28. ca758b7 fix fs_perms tests. Signed-off-by: Cyril Hrubis <chrubis@suse.cz>. by Subrata Modak · 14 years ago
  29. c2a3ba5 Get closer to getting a working quotactl01 test. There were many setup related items missing, and I'm still bumbling around in the dark trying to figure out how this works, but I'm getting closer to an answer at least... by yaberauneya · 15 years ago
  30. cfb7063 Add block device detection. It's the first step towards getting the quotactl crud to work. by yaberauneya · 15 years ago
  31. f6d7f09 define and use common clone helpers by vapier · 15 years ago
  32. 40bc6aa Use SIG_ERR to indicate tst_sig's default handler, to allow (and not clash with) SIG_DFL: SIG_DFL happens to be 0 as well as DEF_HANDLER - this means you cannot use SIG_DFL as tst_sig argument, eg. if you want to reset the signal handling in tests' children to normal. This patch changes DEF_HANDLER to be SIG_ERR, as this value cannot be normally used with tst_sig(), so they cannot clash. Signed-off-by: Jiri Palecek <jpalecek@web.de>. by subrata_modak · 15 years ago
  33. 0d719e5 Re-applying again after Mikeś huge changes to the testcases/kernel/syscalls testcases. Subrata Modak <subrata@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  34. 019fc96 add missing tst_is_cwd_ramfs() prototype by vapier · 15 years ago
  35. e9377db Revert the earlier patch as it generates hell lot of warning for all the tests. by subrata_modak · 15 years ago
  36. e235bf5 Annotate tst_*() helpers with __attribute__ ((format (printf, M, N))) (was: Re: [PATCH] quotactl01: Fix tst_resm() format causing crash): This bug encouraged me to add annotations to the test helpers that take printf()-style formats, cfr. the patch below. It causes a massive amount of compiler warnings, most of them caused by TEST_ERRNO being long. According to CVS history, both TEST_RETURN and TEST_ERRNO have been changed from int to long to accomodate 64-bit platforms, but to me the change of TEST_ERRNO looks bogus. As errno is int according to C99, TEST_ERRNO should actually be int too, right? Note that there are also a few other cases where integers are used on pointer type format specifiers. These will cause crashes when the code path is executed. Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>. by subrata_modak · 15 years ago
  37. 7f71cfb Make the test result codes a real bitfield again: the commit "extend the test result to a bit field so we can extend the output further" from July 20th unfortunately changes the code, that was previously a bitfield, to a non-bitfield. This causes FAILED tests to return erroneously 0. This patch changes the test result codes to be individual bits in the bitfield (effectively reverting a small part of aforementioned patch). Signed-off-by: Jiri Palecek <jpalecek@web.de>. by subrata_modak · 15 years ago
  38. 45a8ba0 trim trailing whitespace by vapier · 15 years ago
  39. 9799ea1 extend the test result to a bit field so we can extend the output further by vapier · 15 years ago
  40. 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
  41. 744305e How about introducing TCID_DEFINE? I'm not sure puttint TCID_DEFINE macro to test.h. I'm not sure using a symbol as an argument for TCID_DEFINE macro is better than using a string. (I had strong lisp backgroud:-). If this acceptable, I'll update related documents and test cases I worked. Signed-off-by: Masatake YAMATO <yamato@redhat.com>. by subrata_modak · 16 years ago
  42. 640adf4 tst_require_root(): unify root checking with this function by vapier · 16 years ago
  43. 2751f26 mark test_exit as noreturn #1891129 by Marcus Meissner by vapier · 17 years ago
  44. fa9086a Add a lib routine to tell us if we are running on NFS, Submitted by Kumar Gala <galak@kernel.crashing.org> by subrata_modak · 17 years ago
  45. 6064c3a rather than forcing every test file to declare Tst_count extern, move it to the common header by vapier · 18 years ago
  46. d34d581 Applied fixes by Paul J.Y. Lahaie to implement support for UCLinux by robbiew · 19 years ago
  47. 143090a Applied patch from Ricky Ng-Adam for systems using tmpfs: by robbiew · 20 years ago
  48. 255c352 rename tst_kver to tst_kvercmp by plars · 22 years ago
  49. ea696e0 Add header file lines for get_kver and tst_kver functions by plars · 22 years ago
  50. 824e05a Fix build break in test.h by plars · 22 years ago
  51. f3a83d5 Applied patch submitted by Ihno Krumreich by robbiew · 22 years ago
  52. 2888451 64bit fix from Andi Kleen by plars · 22 years ago
  53. 9418108 - Removed mc_getopt.c and used getopt() instead. user defined help is now by nstraz · 24 years ago
  54. cc2e555 New additions: by alaffin · 24 years ago