Changeset 242
- Timestamp:
- 01/08/07 11:13:59 (6 years ago)
- Location:
- libyaml/trunk/tests
- Files:
-
- 7 edited
-
run-dumper.c (modified) (2 diffs)
-
run-emitter.c (modified) (1 diff)
-
run-loader.c (modified) (1 diff)
-
run-parser.c (modified) (1 diff)
-
run-scanner.c (modified) (1 diff)
-
test-reader.c (modified) (1 diff)
-
test-version.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libyaml/trunk/tests/run-dumper.c
r238 r242 3 3 #include <stdlib.h> 4 4 #include <stdio.h> 5 #include <string.h> 6 7 #ifdef NDEBUG 8 #undef NDEBUG 9 #endif 5 10 #include <assert.h> 6 #include <string.h>7 11 8 12 #define BUFFER_SIZE 65536 … … 115 119 } 116 120 break; 117 121 default: 122 assert(0); 123 break; 118 124 } 119 125 return 1; -
libyaml/trunk/tests/run-emitter.c
r238 r242 3 3 #include <stdlib.h> 4 4 #include <stdio.h> 5 #include <string.h> 6 7 #ifdef NDEBUG 8 #undef NDEBUG 9 #endif 5 10 #include <assert.h> 6 #include <string.h>7 11 8 12 #define BUFFER_SIZE 65536 -
libyaml/trunk/tests/run-loader.c
r238 r242 3 3 #include <stdlib.h> 4 4 #include <stdio.h> 5 6 #ifdef NDEBUG 7 #undef NDEBUG 8 #endif 5 9 #include <assert.h> 6 10 -
libyaml/trunk/tests/run-parser.c
r210 r242 3 3 #include <stdlib.h> 4 4 #include <stdio.h> 5 6 #ifdef NDEBUG 7 #undef NDEBUG 8 #endif 5 9 #include <assert.h> 6 10 -
libyaml/trunk/tests/run-scanner.c
r210 r242 3 3 #include <stdlib.h> 4 4 #include <stdio.h> 5 6 #ifdef NDEBUG 7 #undef NDEBUG 8 #endif 5 9 #include <assert.h> 6 10 -
libyaml/trunk/tests/test-reader.c
r208 r242 6 6 #include <stdlib.h> 7 7 #include <stdio.h> 8 9 #ifdef NDEBUG 10 #undef NDEBUG 11 #endif 8 12 #include <assert.h> 9 13 -
libyaml/trunk/tests/test-version.c
r208 r242 3 3 #include <stdlib.h> 4 4 #include <stdio.h> 5 6 #ifdef NDEBUG 7 #undef NDEBUG 8 #endif 5 9 #include <assert.h> 6 10
Note: See TracChangeset
for help on using the changeset viewer.
