home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0600 / CCE_0638.ZIP / CCE_0638 / UPDATE / UPDATE30.ZOO / test / diffs
Text File  |  1993-05-21  |  2KB  |  75 lines

  1. ===================================================================
  2. RCS file: /net/acae127/home/bammi/etc/src/master/atari/test/Changelo,v
  3. retrieving revision 1.3
  4. diff -c -r1.3 Changelo
  5. *** 1.3    1992/11/08 00:42:33
  6. --- Changelo    1993/05/21 15:35:39
  7. ***************
  8. *** 40,42 ****
  9. --- 40,48 ----
  10.       (i ran this test on an Hp-Snake, A Dec-Alpha, A Sony-Risc and 
  11.        all of them agree).
  12.   ----------------------  Patchlevel 05 --------------------------------------
  13. + tstring.c:: ++jrb
  14. +     took out bogus test for memcmp:  signedness of host char type
  15. +     should not effect lexicograhical ordering.
  16. + ----------------------  Patchlevel 06 --------------------------------------
  17. ===================================================================
  18. RCS file: /net/acae127/home/bammi/etc/src/master/atari/test/PatchLev.h,v
  19. retrieving revision 1.5
  20. diff -c -r1.5 PatchLev.h
  21. *** 1.5    1992/11/08 00:42:33
  22. --- PatchLev.h    1993/05/21 15:35:42
  23. ***************
  24. *** 1,5 ****
  25.   
  26. ! #define    PatchLevel "05"
  27.   
  28.   /*
  29.    *
  30. --- 1,5 ----
  31.   
  32. ! #define    PatchLevel "06"
  33.   
  34.   /*
  35.    *
  36. ===================================================================
  37. RCS file: /net/acae127/home/bammi/etc/src/master/atari/test/SymbolicRevs,v
  38. retrieving revision 1.5
  39. diff -c -r1.5 SymbolicRevs
  40. *** 1.5    1992/11/08 00:42:33
  41. --- SymbolicRevs    1993/05/21 15:35:44
  42. ***************
  43. *** 3,5 ****
  44. --- 3,6 ----
  45.   V3  to all
  46.   V4  to all
  47.   V5  to all
  48. + V6  to all
  49. ===================================================================
  50. RCS file: /net/acae127/home/bammi/etc/src/master/atari/test/tstring.c,v
  51. retrieving revision 1.1
  52. diff -c -r1.1 tstring.c
  53. *** 1.1    1992/03/26 21:49:31
  54. --- tstring.c    1993/05/21 15:35:45
  55. ***************
  56. *** 452,461 ****
  57. --- 452,466 ----
  58.       check(memcmp("abcd", "abce", 4) < 0, 3);    /* Honestly unequal. */
  59.       check(memcmp("abce", "abcd", 4) > 0, 4);
  60.       check(memcmp("alph", "beta", 4) < 0, 5);
  61. + #if 0 /* signedness should not effect lexicograhical ordering */
  62.       if (charsigned)                /* Sign-bit comparison. */
  63.           check(memcmp("a\203", "a\003", 2) < 0, 6);
  64.       else
  65.           check(memcmp("a\203", "a\003", 2) > 0, 6);
  66. + #else
  67. +         check(memcmp("a\203", "a\003", 2) > 0, 6);
  68. + #endif
  69.       check(memcmp("abce", "abcd", 3) == 0, 7);    /* Count limited. */
  70.       check(memcmp("abc", "def", 0) == 0, 8);    /* Zero count. */
  71.   
  72.