1. bda0c64 main was lacking a return code. by yaberauneya · 15 years ago
  2. 05774b0 Fix an unitialized variable and usage corner case where if argc > 1, it would always accept the arguments as-is. by yaberauneya · 15 years ago
  3. bdcd4e1 Fix the Makefile comment title. by yaberauneya · 15 years ago
  4. 9079a9f Add a Common Issues section to address common roadblocks encountered with the build. by yaberauneya · 15 years ago
  5. 6f36678 fallocate02: add a default case to avoid gcc uninitialized warning by vapier · 15 years ago
  6. 6dd41a3 drop compile-time checks for the syscall and rely completely on runtime -- people missing __NR_fallocate should update include/linux_syscall_numbers.h by vapier · 15 years ago
  7. 0ccf2de Report errors appropriate to whether or not the read / write operations with the pipe succeeded. by yaberauneya · 15 years ago
  8. f81893b Fix bad SQA: by yaberauneya · 15 years ago
  9. c236508 I was confused, and numaif.h is in fact a header under testcases/kernel/syscalls/utils. As such: by yaberauneya · 15 years ago
  10. 0e76817 1. Use linux_syscall_numbers.h. by yaberauneya · 15 years ago
  11. 6eb4bde 1. Disable the test whenever the appropriate headers and syscalls don't exist so this will compile on systems without numa and without. by yaberauneya · 15 years ago
  12. a95028f The patch does the following: by yaberauneya · 15 years ago
  13. f6d7f09 define and use common clone helpers by vapier · 15 years ago
  14. 919dca8 extend autoconf ptrace tests by vapier · 15 years ago
  15. 4f493d8 Add an explicit requirement in the documentation stating that people need to have Gnu make 3.81, because many of the constructs in the new Makefile infrastructure will not work with prior versions of Gnu Make or other versions of Make. by yaberauneya · 15 years ago
  16. 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
  17. 9433aa5 Use a saner variant for computing the number of groups in cpuctl tests: this patch changes the calculation of numer of groups in cpuctl test. The new code doesn't need bc, and is more comprehensible IMHO. Signed-off-by: Jiri Palecek <jpalecek@web.de>. by subrata_modak · 15 years ago
  18. 0ac9586 Fix expected output in ar01 testcase: According to POSIX, the verbose output of "ar -tv" should not contain the leading zero in day-of-month (its format should be equivalent to %e specifier of date) [source: man(1posix)]. Signed-off-by: Jiri Palecek <jpalecek@web.de>. by subrata_modak · 15 years ago
  19. 56aa50c Changes for OCTOBER 2009. Signed-off-by: Subrata Modak <subrata@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  20. 154a9b1 Stupid Garrett. I need to increment the value... by yaberauneya · 15 years ago
  21. 6657522 Avoid a possible issue with the test statement for SHELL_DEBUG if the user set it to something nasty like -x. by yaberauneya · 15 years ago
  22. 24b8dfa Fix a bashism that was pointed out in other files by Jiri Palecek. by yaberauneya · 15 years ago
  23. a7131e7 Some Bashism Fixes from Jiří-Paleček<jpalecek@web.de>. by subrata_modak · 15 years ago
  24. 27274d8 Garret added a new testcase for ptrace() syscall: The following calls ptrace(PTRACE_TRACEME, 0) for all signals and validates that all signals apart from SIGKILL are properly intercepted and WIFSTOPPED remains true, and SIGKILL is properly treated as WIFSIGNALED() && WTERMSIG() returns SIGKILL.I looked at it again this weekend, and my criterion for kill (..., 0) was incorrect. The newer version passes, and tests correct criterion, as per the manpage: by subrata_modak · 15 years ago
  25. 0560e15 Patch to remove hard coded cpu governers. Signed-off-by: poornima nayak <mpnayak@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  26. 711379c Fix failures messages on multi socket hyper threaded system. Signed-off-by: poornima nayak <mpnayak@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  27. da0abe2 Fix compiler warnings with invalid printf(3) format string quantifiers: by yaberauneya · 15 years ago
  28. bf61856 Complete the test cases for geteuid16: Another small patch to complete the test cases for *16. Put compat_16.h to testcases/kernel/syscalls/geteuid. Signed-off-by: Masatake YAMATO <yamato@redhat.com>. by subrata_modak · 15 years ago
  29. 97544a1 Some fixes of shell scripts of tests: this patch fixes some minor bugs in the code of LTP shell scripts: by subrata_modak · 15 years ago
  30. ba2cfc0 mem/hugetlb: fix failure of hugemmap03: 1) In mmap's manual, The starting address for the new mapping is specified in addr. So, if mmap's argument "addr" is reachable, the mmap will creates a new mapping in the virtual address space of the call-ing process. The test hugemmap03 will test that a normal page cannot be mapped into a high memory region. This infers that "addr" should be higher for 64-bit mode. 2) The test use "-I2" option, and this not only causes TFAIL's loop, but also causes TPASS's loop. For TFAIL, loop is deserved, nor for TPASS. This patch fixed these problems. Signed-off-by: Liu Bo <liubo2009@cn.fujitsu.com>. by subrata_modak · 15 years ago
  31. 358c3ee Printf-style format string warnings (TEST_RETURN related): this patch fixes some printf-format string warnings, concerning the TEST_RETURN variable. TEST_RETURN is declared as "long", so it is advisable to use "%ld" in printf format string to avoid undefined behaviour. Note that this patch is not complete - it fixes the warnings in files near the beginning of the alphabet only. Signed-off-by: Jiri Palecek <jpalecek@web.de>. by subrata_modak · 15 years ago
  32. 296ffa5 Fix some bashisms: this is another patch fixing bashisms in LTP tests (the fixes are more or less the same as in the previous patches, except for a few exceptions). Note that the patch is not complete, in the sense that there may remain further bashisms in the source even after applying the patch (like use of arrays, which is visible even from this patch). Signed-off-by: Jiri Palecek <jpalecek@web.de>. by subrata_modak · 15 years ago
  33. 98be589 Change errno reporting mechanism to TERRNO/TTERRNO in msgctl tests: The TERRNO/TTERRNO flags offer more information than the manual errno output used previously in the tests. This patch changes the tst_resm(XXX, ..., errno) and similar statements to tst_resm(XXX|TERRNO, ...). Signed-off-by: Jiri Palecek <jpalecek@web.de>. by subrata_modak · 15 years ago
  34. acb8449 Fix temporary file creation in mmapstress tests: these are two little fixes of the mmapstress test: by subrata_modak · 15 years ago
  35. 55d04e4 This is the patch of testcases for the ext4 new features test. It contains multi-block alloc/delayed alloc test, inode version test, journal checksumming test, nanosec timestamps test, online defrag test, persist prealloc test, subdirectory limit test and uninit groups test of ext4. In this test suite, there is two FAIL in the subdirectory limit test. It is because we cann't create more than 32000 subdirectory when block size is small, such as 1024, and the name of every subdirectory is very long, such as every name is 255 bytes. I think it is the bug of the ext4. by subrata_modak · 15 years ago
  36. 3a0171b Accidentally nuking your .c files when running clean isn't a good thing. by yaberauneya · 15 years ago
  37. 45e3a54 I thought I removed the recursive LDLIBS definition sneak in. Oh well... by yaberauneya · 15 years ago
  38. 420ebba Make sure the end-user knows that they need to run make autotools from $(top_srcdir), to avoid potential confusion. by yaberauneya · 15 years ago
  39. e4707b1 Get rid of redundant XOPEN2K #define (_GNU_SOURCE covers this). by yaberauneya · 15 years ago
  40. 5ac23b1 1. Get rid of psuedo-autoconf scripts in testcases/realtime/scripts. by yaberauneya · 15 years ago
  41. e28a591 testcases.mk: Add a freebie compile for the apicmds, if needed so tests can be run before install. by yaberauneya · 15 years ago
  42. 2d8710f Update the documentation for building and installing LTP as per the Makefile infrastructure changes. by yaberauneya · 15 years ago
  43. 96db7a4 Some fixes to make swap* stricter with including sys/swap.h, and defining MAX_SWAPFILES, that were hanging out in my dev branch that weren't checked in. by yaberauneya · 15 years ago
  44. b68050b 1. Get rid of useless documentation (the directions are already in INSTALL). by yaberauneya · 15 years ago
  45. dba7b7d On second thought, the compiler-related variables should be uncommented. by yaberauneya · 15 years ago
  46. 376b121 Add a default config.mk file to ease use for non-autoconf users. by yaberauneya · 15 years ago
  47. 6fb6a4f Fix a typo and a warning related to unchecked results from asprintf, punted by from the compiler. by yaberauneya · 15 years ago
  48. b3c28e7 The format string quantifier is incorrect, and thus the compiler prints out a warning. by yaberauneya · 15 years ago
  49. 01979aa Check in Makefile, which partially fixes issue with realtime component build breakage. by yaberauneya · 15 years ago
  50. 7f05328 Fix two broken Makefiles reported by Gowri at IBM. by yaberauneya · 15 years ago
  51. 335f650 Fix indentation and a compile error noted by SimonXu on #ltp. by yaberauneya · 15 years ago
  52. 4df2865 - Add additional quota check for RHEL 4.8 as reported by SimonX on #ltp by yaberauneya · 15 years ago
  53. 36c8e2d Fix several out-of-build tree issues with CVS HEAD found while building on-site with Cisco. by yaberauneya · 15 years ago
  54. f969255 1. Add check for locale command with exists command in cmdlib.sh by yaberauneya · 15 years ago
  55. 58f3c4b The attached patch fixes my issues, but I can't easily verify whether or not it fixes the positive behavior of the testcase itself under all conditions: by yaberauneya · 15 years ago
  56. 906757f This change (which I'm committing to cvs right now) changes the default to the loopback address: by yaberauneya · 15 years ago
  57. 677ce25 The trap signal handler wasn't being disabled on entry thus causing it to be called twice, the first time when tst_cleanup was called; the second when cleanup exited. by yaberauneya · 15 years ago
  58. c59af74 1. Fix incrementing call to use POSIX compliant version of incrementing. by yaberauneya · 15 years ago
  59. bd388eb 1. Honor TMPDIR, as per Henry Yei's note, because linktest.sh doesn't currently do that. by yaberauneya · 15 years ago
  60. bbe24d7 -laio shouldn't be added to LDLIBS by default. That is just plain wrong. by yaberauneya · 15 years ago
  61. 7e67bd8 Modify tests to honor tmp directory passed into runltp, convert to LTP format: This is a set of patches for tests in the fs runtest file which make use of tst_tmpdir functions or alternatively, the base tmpdir set by the user. Some of the tests have been converted to LTP test format as well. Tests that are changed: fs_di, fs_perms, lftest, linker01, quota_remount_test01, writetest. Signed-off by: Henry Yei <hyei@mvista.com>. by subrata_modak · 15 years ago
  62. 606e544 modify fs scenario to use working directory specified by runltp: This patch modifies the fs scenario to remove hard coded paths with /tmp as well as make sure that tests that take directory arguments use the temporary directory specified by runltp. I've chosen to pass in the temporary directory rather than change the tests themselves for certain tests take a path as an argument. Signed-off by: Henry Yei <hyei@mvista.com>. by subrata_modak · 15 years ago
  63. 266ec97 Change use of signal to sigaction for more reliability, fix time issue: by subrata_modak · 15 years ago
  64. 1bf1c2a 1. Make linux_syscall_numbers.h dependent on the .in files so that it can be regenerated if and when the files are touched. by yaberauneya · 15 years ago
  65. 8092083 Rename BUILD_DEPS to MAKE_DEPS to be more consistent with MAKE_TARGETS. Bleh... I've dealt with our build system here at Cisco far too much (BUILD_DEPS is the variable name...). by yaberauneya · 15 years ago
  66. b9b101d generic_*target.inc: Revive BUILD_DEPS support so dependencies are built prior to building MAKE_TARGETS, for simplicity of design for the end-user. by yaberauneya · 15 years ago
  67. 106e74f config.mk.in: we're no longer installing directly to the destination directory until install is called, so let's not pick up anything CPPFLAGS-wise from that directory. by yaberauneya · 15 years ago
  68. 77772ef 1. Fix taskstats.m4 so it no longer punts out warnings. by yaberauneya · 15 years ago
  69. 91b723f AR is defined in configure.ac. Not needed in m4 anymore. by yaberauneya · 15 years ago
  70. f0be1bd Add copyright tort. Abbreviate. by yaberauneya · 15 years ago
  71. f7df140 autoconf 2.61 / m4 1.4.7 don't define the macro, AC_PROG_AR. This needs to be by yaberauneya · 15 years ago
  72. b836e53 Remove an accidental circular dependency. by yaberauneya · 15 years ago
  73. adebaed Check in `creating directory' cosmetic item for runltplite.sh as well, just to be consistent. by uid311324 · 15 years ago
  74. 2b6cd80 While trying to figure out why entries don't get entered in the exec by yaberauneya · 15 years ago
  75. 3a9947e Move `creating ... directory' to block where: We shouldn't say that we're creating the directory unless we are actually creating the directory. This only leads to potentialconfusion with LTP newbies. Signed-off-by: Garrett Cooper <yanegomi@gmail.com>. by subrata_modak · 15 years ago
  76. ff424da use default size for blks if parsing df output fails to return numeric argument: This patch for rwtest.sh sets a default size for the number of blocks within the filesystem the test is executing on if parsing "df output" somehow results in a non-numeric value(unexpected df output). Also removes trailing whitespace. Garrett, I've attached the patch with your suggested changes. As for making default_sz 1000000, this was to keep to the original functionality, but fix cases where df output was not expected. If you see the original code, if sz > max, than it is capped at max=1000000 as well. Whether ~ 1GB is a good maximum, I'm not sure. Signed-off-by: Henry Yei <hyei@mvista.com>. by subrata_modak · 15 years ago
  77. 493f24f Complete the test cases for getuid16: Some of testcases for *16 and *64 system calls have not been completed yet though my makefile trick were introduced by Suburata. *16 may not be so important but I'd like to complete them anyway. The first one is for getuid16. To apply getuid16.patch use -p0 option. by subrata_modak · 15 years ago
  78. 54790f2 Found a few more... by yaberauneya · 15 years ago
  79. f02df4f Note that a few commands are missing in the TODO and need to be fixed. by yaberauneya · 15 years ago
  80. 0b47edd Add note about check_pidns_enabled, check_mqns_enabled and check_netns_enabled as well. by yaberauneya · 15 years ago
  81. 6f8d62a Note check_for_unshare requirement in containers_test.sh by yaberauneya · 15 years ago
  82. 160ed98 File descriptors not cleaned up: This patch for openfile contains the following changes: by subrata_modak · 15 years ago
  83. d07b595 The following patch adds a signal() syscall to the ppoll01 testcase. The testcase has a signal handler in it but this signal handler is not registered with the kernel through the signal() syscall. Without the patch the testcase fails when it sends a SIGINT to itself as part of one of the case of the test run. Signed-off-by: Chandru S <chandru@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  84. 5358736 Dependency for all was wrong. by yaberauneya · 15 years ago
  85. 83eb2d1 This proposed change makes linktest.pl into linktest.sh, to avoid missing coverage with symlinks and hardlinks due to a lacking perl dependency on the target host. by yaberauneya · 15 years ago
  86. 02b7b33 Add comment about testcases/commands/unzip/unzip01. by yaberauneya · 15 years ago
  87. de0b165 Forgot to checkin Makefile to reenable aio02. by yaberauneya · 15 years ago
  88. 5cb8cd5 Add a note about testcases/network/multicast needing fixing. by yaberauneya · 15 years ago
  89. e3e0390 Note the fact that testcases/network/rpc/rpc-tirpc-full-test-suite needs to be integrated with Makefiles in order to function at install. by yaberauneya · 15 years ago
  90. c12ea91 tmpcmds.sh was renamed to net_cmdlib.sh by yaberauneya · 15 years ago
  91. 81ed641 And of course I used the wrong string substitution -.-... let's just change that back to $(dirname)... by yaberauneya · 15 years ago
  92. ea0d619 I accidentally coded in the wrong IP address values (all the same) and change the semantic from 181 - 184 to 180 - 183. Changing to be correct and consistent. by yaberauneya · 15 years ago
  93. e98baf1 1. My Gentoo system lacks the ip utility, which is required for this by yaberauneya · 15 years ago
  94. 7ef2c62 The output format for tst_res.c changed in rev 1.9 so it now prefixes T to the failure codes (BROK, CONF, FAIL, PASS). This change updates the parser so that it properly parses the results information from the output log. by yaberauneya · 15 years ago
  95. 0f42208 Don't forget to copy over IDcheck.sh. by yaberauneya · 15 years ago
  96. b8ee435 Remove this test and itś reference anywhere as requested by Cyril Hrubis <chrubis@suse.cz>. Signed-off-by: Subrata Modak <subrata@linux.vnet.ibm.com>. by subrata_modak · 15 years ago
  97. da124b9 Just another printf cleanup: attached patch fixes some more printf formating issues as well as some coding style errors. Signed-off-by: <chrubis@suse.cz>. by subrata_modak · 15 years ago
  98. 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
  99. ec27747 fix memcg_function_test's bug: testcase_25() uses a wrong "$?" value , Now use "ret" to record the real "$?" value for test. Signed-off-by: Liu Bo <liubo-fnst@cn.fujitsu.com>. by subrata_modak · 15 years ago
  100. ce93bf4 realtime: Remove printing of cpu affinity masks in pi-tests: Some tests under realtime/func/pi-tests in LTP display junk values for cpu affinity masks: by subrata_modak · 15 years ago