Changeset 1726
- Timestamp:
- Jan 28, 2007, 2:17:49 AM (16 years ago)
- Location:
- zzuf/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/ChangeLog
r1713 r1726 1 ------------------------------------------------------------------------ 2 r260 | sam | 2007-01-28 01:53:19 +0100 (Sun, 28 Jan 2007) | 2 lines 3 Changed paths: 4 M /trunk/test 5 M /trunk/test/Makefile.am 6 D /trunk/test/fdcat.c 7 D /trunk/test/streamcat.c 8 M /trunk/test/testsuite.sh 9 A /trunk/test/zzcat.c 10 11 * Merged fdcat and streamcat into zzcat. 12 13 ------------------------------------------------------------------------ 14 r259 | sam | 2007-01-28 01:50:53 +0100 (Sun, 28 Jan 2007) | 2 lines 15 Changed paths: 16 M /trunk/src/lib-stream.c 17 18 * Print "EOF" instead of -1 when it means EOF. 19 20 ------------------------------------------------------------------------ 21 r258 | sam | 2007-01-28 01:22:23 +0100 (Sun, 28 Jan 2007) | 2 lines 22 Changed paths: 23 M /trunk/src/lib-stream.c 24 25 * Oops, fixed syntax error. 26 27 ------------------------------------------------------------------------ 28 r257 | sam | 2007-01-28 01:21:58 +0100 (Sun, 28 Jan 2007) | 2 lines 29 Changed paths: 30 M /trunk/src/lib-stream.c 31 32 * Better debug messages for special cases (eg. fgetc returning -1). 33 34 ------------------------------------------------------------------------ 35 r256 | sam | 2007-01-27 22:40:31 +0100 (Sat, 27 Jan 2007) | 2 lines 36 Changed paths: 37 M /trunk/test/Makefile.am 38 A /trunk/test/file-00 39 A /trunk/test/file-ff 40 A /trunk/test/file-random 41 A /trunk/test/file-text 42 M /trunk/test/testsuite.sh 43 44 * Updated testsuite to use our own files instead of /dev/*. 45 46 ------------------------------------------------------------------------ 47 r255 | sam | 2007-01-27 20:05:46 +0100 (Sat, 27 Jan 2007) | 2 lines 48 Changed paths: 49 M /trunk/doc/zzuf.1 50 M /trunk/src/fuzz.c 51 M /trunk/src/fuzz.h 52 M /trunk/src/opts.c 53 M /trunk/src/opts.h 54 M /trunk/src/zzuf.c 55 56 * Implemented -f/--fuzzing (fuzzing mode). 57 58 ------------------------------------------------------------------------ 59 r254 | sam | 2007-01-27 16:13:34 +0100 (Sat, 27 Jan 2007) | 3 lines 60 Changed paths: 61 M /trunk/src/fd.c 62 M /trunk/src/fuzz.c 63 M /trunk/src/lib-stream.c 64 M /trunk/src/libzzuf.h 65 66 * Better ungetc() implementation. Now we don't need to care about the 67 fuzzing method. 68 69 ------------------------------------------------------------------------ 70 r253 | sam | 2007-01-25 23:34:28 +0100 (Thu, 25 Jan 2007) | 2 lines 71 Changed paths: 72 M /trunk/src/debug.c 73 M /trunk/src/lib-fd.c 74 M /trunk/src/libzzuf.c 75 M /trunk/src/libzzuf.h 76 M /trunk/src/zzuf.c 77 78 * Carry DEBUG_FILENO in the ZZUF_DEBUG environment variable. 79 80 ------------------------------------------------------------------------ 81 r252 | sam | 2007-01-25 23:07:23 +0100 (Thu, 25 Jan 2007) | 3 lines 82 Changed paths: 83 M /trunk/src/libzzuf.c 84 85 * Initialise malloc-related functions earlier. They're needed for regex 86 initialisation amongst others. 87 88 ------------------------------------------------------------------------ 89 r251 | sam | 2007-01-25 22:43:37 +0100 (Thu, 25 Jan 2007) | 3 lines 90 Changed paths: 91 M /trunk/src/lib-mem.c 92 93 * Put a few debug messages in malloc-related functions when they use our 94 custom buffer. 95 96 ------------------------------------------------------------------------ 97 r250 | sam | 2007-01-25 21:18:34 +0100 (Thu, 25 Jan 2007) | 2 lines 98 Changed paths: 99 M /trunk/NEWS 100 101 * Updated NEWS. 102 103 ------------------------------------------------------------------------ 104 r249 | sam | 2007-01-25 20:55:20 +0100 (Thu, 25 Jan 2007) | 3 lines 105 Changed paths: 106 M /trunk/src/lib-mem.c 107 M /trunk/src/libzzuf.c 108 M /trunk/src/libzzuf.h 109 110 * Crap! Fixed memory manager initialisation. And sticking that into the 111 0.6.1 tarball, no one will notice! (ha ha ha) 112 113 ------------------------------------------------------------------------ 114 r248 | sam | 2007-01-25 17:56:22 +0100 (Thu, 25 Jan 2007) | 3 lines 115 Changed paths: 116 M /trunk/ChangeLog 117 M /trunk/NEWS 118 M /trunk/configure.ac 119 120 * Version 0.6.1. 121 * Updated NEWS and ChangeLog. 122 1 123 ------------------------------------------------------------------------ 2 124 r247 | sam | 2007-01-25 16:33:22 +0100 (Thu, 25 Jan 2007) | 2 lines -
zzuf/trunk/NEWS
r1715 r1726 1 1 $Id$ 2 3 Changes from 0.6.1 to 0.7 4 5 * added new fuzzing modes 6 * fixed crash in regex handlers 7 * improved debug messages 2 8 3 9 Changes from 0.6 to 0.6.1 -
zzuf/trunk/configure.ac
r1713 r1726 1 1 # $Id: configure.ac 98 2006-09-22 16:27:37Z sam $ 2 2 3 AC_INIT(zzuf, 0. 6.1)3 AC_INIT(zzuf, 0.7) 4 4 5 5 AC_PREREQ(2.50) … … 8 8 AC_CANONICAL_SYSTEM 9 9 10 AM_INIT_AUTOMAKE(zzuf, 0. 6.1)10 AM_INIT_AUTOMAKE(zzuf, 0.7) 11 11 AM_CONFIG_HEADER(config.h) 12 12
Note: See TracChangeset
for help on using the changeset viewer.