1. c81df62 Following patch adds "return NULL;" to the function returning void* in math float tests. This change silences compiler warnings. Signed-off-by: Cyril Hrubis chrubis@suse.cz. by Subrata Modak · 14 years ago
  2. e6a28ac math/float/thread_code.c, revert previous patch which added check for NaN. Here is a patch that reverts the previous patch applied to thread_cod.c. Some of the float tests were reporting a failure where it detected the difference between the result and expected result was NaN(not a number). As some of the results and expected results resolved to inf(infinity), the difference calculation would result in NaN. With the previous patch, float_power and float_bessel tests were consistently failing on all architectures tried. Signed-off by: Henry Yei <hyei@mvista.com>. by subrata_modak · 15 years ago
  3. a9a762b Fix overreaching clean targets in Makefiles that cleaned the readme files: the makefiles in some of the float tests contain the glob "[dr]*" in their clean targets. Unfortunately, this deletes not only the generated reference files, but also the readme files shipped in those directories. This patch fixes it by changing CLEAN_TARGETS to more specific patterns (that capture all generated files in all float tests, however). Signed-off-by: Jiri Palecek <jpalecek@web.de>. by subrata_modak · 15 years ago
  4. 955fbb3 rename readme file to avoid clean glob by vapier · 15 years ago
  5. 1caeef8 Fix false success for exp test: if I get it right there is error in ltp-full-20090831/testcases/misc/math/float/exp_log/genexp.c (see genexp_resfile.patch). Resulting file exp_out.ref is wrong, but it is not catch by test - nan_compare.patch make correct nan comparison. Signed-off-by: Pavel Kiryukhin <vksavl@gmail.com>. by subrata_modak · 15 years ago
  6. ef77253 1. Please see README.mk-devel for a full description of the changes by yaberauneya · 15 years ago
  7. 6d56107 Fix some bashisms: this patch reflects the comments by various people to the previous versions. It uses "+=1" instead of postincrement because of dash, ['s boolean expressions, printf for the formatting. I've left the unzip pushd/popd and the signal names issue completely. Signed-off-by: Jiri Palecek <jpalecek@web.de>. by subrata_modak · 15 years ago
  8. 5926f78 Fixes of the tcore test. these are little fixes of the tcore.sh script: by subrata_modak · 15 years ago
  9. 1b77909 Crash02: Deal with SIGSTOP and SIGSEGV v3: Version 3 also fixed compilation failures on IA-64, since there is no SYS_fork either. It use clone2() instead. Version 2 fixed compilation failures on IA-64, because there is no SYS_vfork there. Instead, it uses clone() syscall for vfork(): clone(child_stack=0, flags=CLONE_VM|CLONE_VFORK|SIGCHLD). We have seen crash02 test can not finish due to the child process got SIGSTOP or SIGSEGV when calling random syscalls like this, by subrata_modak · 15 years ago
  10. e3d65fb Fix a build failure of tcore on non-x86 archs: I report a build failure and a patch for it. If your system is not either i386 or x86_64, making in ltp-full-20090131 fails as follows: It's because wrong position of TST_TOTAL definition. Signed-off-by: Seiichi Ikarashi <s.ikarashi@jp.fujitsu.com>. by subrata_modak · 16 years ago
  11. 591aa3a set flags properly and just use implicit make rules by vapier · 16 years ago
  12. 7e39ebb Avoiding build failures on ppc64, adding proper FLAG definitions and improving a bit of LTP specific stuff. Signed-Off-By: Subrata Modak <subrata@linux.vnet.ibm.com>. by subrata_modak · 16 years ago
  13. 4437ec4 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com> wrote: in a ppc64 machine running SLES11 RC1, I'm trying to build the December 2008 LTP release (ltp-full-20081231) but it fails on "make". Mike Frysinger <vapier@gentoo.org> replied: tcore only works on x86 systems ... building/running on other systems makes no sense. Subrata Modak <subrata@linux.vnet.ibm.com> answered: Mike, Then the following Patch will be needed: Signed-Off-By: Subrata Modak <subrata@linux.vnet.ibm.com>. by subrata_modak · 16 years ago
  14. 86785aa Thanks very much for fixing this. Now i am able to build and install properly. As a fallout to your fix, i am adding this test to build & install default, however i am reserving to run it only through runalltests.sh, as it creates a core file of size > 20MB. Signed-Off-By: Subrata Modak <subrata@linux.vnet.ibm.com>, by subrata_modak · 16 years ago
  15. 0b2876e Needed to work on i686 machines. by subrata_modak · 16 years ago
  16. 17df420 Subrata Modak <subrata@linux.vnet.ibm.com> wrote: by subrata_modak · 16 years ago
  17. b15aafd Hi, by subrata_modak · 16 years ago
  18. c60545f Segmentation fault error: When I ran runtest/math with runltp, the float cases worked well. But they would drop into segmentation fault when they were called directly in command line. The reason is to input "NULL" to strlen() which caused Segmentation fault. The patch also fixed a large number of memory leaks in math/float cases.Signed-off-by: Jin Bing Guo <guojb@cn.ibm.com>. by subrata_modak · 16 years ago
  19. e9b3101 The float_bessel testcases, as a matter of fact, all float_* testcases seem to fail when multiple instances are run concurrently. The failures occur because file sizes don't match or because the number of bytes read don't match the file size. This can be attributed to the parallel instance reading a file before the write to it (by another instance) has completed. In such situations, either the file size has not been updated in the inode header or the file size has been updated but the file's write operation has not been updated completely. To fix this concurrency problem, my suggestion is to check for an existing instance and wait for it to finish before beginning the current instance. Any other concurrency resolution technique may complicate matters. A message to the console indicating such a decision might be added. By Sridhar Vinay <vinaysridhar@in.ibm.com> & Renaud Lottiaux <Renaud.Lottiaux@kerlabs.com>. by subrata_modak · 16 years ago
  20. 51a9f61 Executing f00f testcase in x86 Xeon machines, it failed returning SIGSEGV: by subrata_modak · 17 years ago
  21. 1a02071 Fix from "rdunlap@xenotime.net" to use standard test results output by subrata_modak · 17 years ago
  22. 9e78ade do not use variable names the same as system functions (like stime() or utime()) by vapier · 18 years ago
  23. 9932ebd cleanup flags by vapier · 18 years ago
  24. bf75d79 use = rather than == when testing for equality in portable shell scripts as the latter is not POSIX by vapier · 18 years ago
  25. 32cc0ac use memset() instead of bzero() by vapier · 18 years ago
  26. 038e4bc Patch from Olof Johansson <olof@lixom.net> by plars · 18 years ago
  27. a721ece kill extraneous newlines in test output by vapier · 19 years ago
  28. 63eb92a fix gcc warning: by vapier · 19 years ago
  29. a5ee764 fix gcc warning: by vapier · 19 years ago
  30. 95b987b cleanup by mridge · 19 years ago
  31. 9d8877c Moving selinux to correct directory by mridge · 20 years ago
  32. f6f3f2c Additional patches/comments from the security team by mridge · 20 years ago
  33. e88b264 Review Updates by mridge · 20 years ago
  34. 14c061a Initial release by mridge · 20 years ago
  35. 6a5e749 move TCID outside the ifdef __i386__ by plars · 20 years ago
  36. c918632 use ltp functions in f00f test for better output parsing by plars · 20 years ago
  37. 92b688b Applied patches from Chris Dearman to set PASS/FAIL messages. by robbiew · 21 years ago
  38. 722b267 Applied a patch from Mike Wolf: by robbiew · 21 years ago
  39. 382a50c Corrected the printf type again...for pthread_t. I looked at the glibc code and by robbiew · 21 years ago
  40. 50c48f8 Changed the type for printf'ing the pthread_id to allow it to work on ppc64. by robbiew · 21 years ago
  41. e943ce0 Removed because info already documented under /doc. by robbiew · 21 years ago
  42. 387fe90 Defined PTHREAD_THREADS_MAX if already not defined. by robbiew · 21 years ago
  43. 219abb4 Test uses obsolete functions that perform 48-bit arithmetic....yuck!! Also by robbiew · 22 years ago
  44. 4b26447 corrected the indentation on these tests. by robbiew · 22 years ago
  45. 0a5de76 Relocated ltpdmmapper.sh to the /testscripts directory. by robbiew · 22 years ago
  46. d7184e6 typo: $TPROOT changed to $LTPROOT by robbiew · 22 years ago
  47. 0f1a57c Initial drop of Device Mapper tests by mridge · 22 years ago
  48. bac165d Removed the "-O" flag. by robbiew · 22 years ago
  49. f756722 Applied Vasan's "CFLAGS+=" patch by robbiew · 22 years ago
  50. 740674e Corrected MININT section. by robbiew · 22 years ago
  51. dfb5d78 Applied patch from Susanne Wintenberger: by robbiew · 22 years ago
  52. da0cc97 warnings cleanup by robbiew · 22 years ago
  53. ae45c71 warnings cleanup by robbiew · 22 years ago
  54. 7a1027d Removed old version of file. by robbiew · 22 years ago
  55. 15c80c1 warnings cleanup by robbiew · 22 years ago
  56. ed8de1d warnings cleanup by robbiew · 22 years ago
  57. 97ef71e These executables cannot be built using optimization (-O). by robbiew · 22 years ago
  58. 9dc9ee7 I had to rename the LOADLIBES Makefile setting to LDFLAGS. When building the by robbiew · 22 years ago
  59. 2948656 Removed the "+" from the LOADLIBS section b/c it was linking to the pthreads by robbiew · 22 years ago
  60. b31b137 Applied Chris Dearman's patch to move generate() into main.c. Also, fixed by robbiew · 22 years ago
  61. 3b2ec26 *** empty log message *** by robbiew · 22 years ago
  62. a70576c Removed "extern int errno" lines and replaced with "#include <errno.h>" by robbiew · 22 years ago
  63. 4299030 Removed uneccesary code from the install section. by robbiew · 22 years ago
  64. 5475776 Applied Vasan Sundar's Makefile patches. by robbiew · 22 years ago
  65. a54f6cb Added and include for wait.h. by robbiew · 22 years ago
  66. 8b95b2c Added code so that the datafiles are created at execution time, instead by robbiew · 22 years ago
  67. e5b2a63 Removed the tcore_patch.... directory, from the list. This test contains by robbiew · 22 years ago
  68. 4669a16 Added Guo Min's <min.guo@intel.com> test suite for multi-thread core dump kernel patch by robbiew · 22 years ago
  69. 89b98a1 Added code to check for endianess before union definitions. by robbiew · 22 years ago
  70. 2c282cd Added atof() test ported by Ananda Venkataraman. by robbiew · 22 years ago
  71. 4487a90 Added nextafter() test ported by Ananda Venkataraman. by robbiew · 22 years ago
  72. a76e475 Corrected copyright info. by robbiew · 22 years ago
  73. 19e6a8b Added abs() test ported by Ananda Venkataraman. by robbiew · 22 years ago
  74. 4207d7c Moved to syscalls. by robbiew · 22 years ago
  75. ceb4fe9 Moving syslog to syscalls. by robbiew · 22 years ago
  76. 797ddbf Corrected paramaters for this test. by robbiew · 22 years ago
  77. 28949ec Initial checkin of syslog tests ported by David Barrera <dbarrera@us.ibm.com> by robbiew · 22 years ago
  78. 3b5761d Initial checkin of syslog test. by robbiew · 22 years ago
  79. bd00249 Initial check-in of floating point tests. by robbiew · 22 years ago
  80. 0e8b199 Relocated the float directory under math by robbiew · 22 years ago
  81. 34d0f6a Adjusted for relocation. by robbiew · 22 years ago
  82. 4a274ff Adjusted install from relocation. by robbiew · 22 years ago
  83. 2f8c1d7 Initial check-in. by robbiew · 22 years ago
  84. 557f62d Added math and removed float. by robbiew · 22 years ago
  85. 60d7101 Relocated tests. by robbiew · 22 years ago
  86. 285a5f6 Applied Ananda Venkataraman's <avenkat@us.ibm.com> enhancement patch that by robbiew · 22 years ago
  87. 3711440 Applied float test warnings cleanup patch from Ihno Krumreich <ihno@suse.de> by robbiew · 22 years ago
  88. 5e9c69e Applying patch from Steven J. Hill <sjhill@realitydiluted.com>. by nstraz · 22 years ago
  89. 7f1ea40 remove unnecessary pthread lib being linked by plars · 22 years ago
  90. 27921ed Removed disktest by robbiew · 23 years ago
  91. 45d2288 Removed disktest and put the most recent version under /testcases/kernel/io by robbiew · 23 years ago
  92. e1aa362 Added disktest. by robbiew · 23 years ago
  93. 12ce1ca Added disktest. by robbiew · 23 years ago
  94. bc4c280 *** empty log message *** by robbiew · 23 years ago
  95. 7b085a2 s/gcc/$(CC) for bug #506662 by plars · 23 years ago
  96. 16dc53f Separate make and make install by plars · 23 years ago
  97. b0980e0 Correction to install. by robbiew · 23 years ago
  98. 4ff188b Corrected install. by robbiew · 23 years ago
  99. f8c9644 Corrected install section. by robbiew · 23 years ago
  100. ca227c7 Lengthend sleep time in install to account for slow and/or multiprocessor machines. by robbiew · 23 years ago