Changeset 1064 in MondoRescue for branches/stable/mondo/src/test
- Timestamp:
- Jan 23, 2007, 1:09:32 AM (18 years ago)
- Location:
- branches/stable/mondo/src/test
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/src/test/mktest
r1054 r1064 7 7 8 8 lib="../lib/mr_conf.c ../lib/mr_msg.c ../lib/mr_err.c ../lib/mr_mem.c" 9 OPT="-Wall -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_REENTRANT -Wstrict-prototypes -Wshadow -funsigned-char -Wunused -Winit-self -Wcast-align -O2 -g -I../common -I../include" 9 10 10 11 echo "Generating test-msg" 11 gcc -O2 -g -I../common -I../includetest-msg.c $lib -o test-msg12 gcc $OPT test-msg.c $lib -o test-msg 12 13 echo "Generating test-string" 13 gcc -O2 -g -I../common -I../includetest-string.c ../lib/mr_str.c $lib -o test-string14 gcc $OPT test-string.c ../lib/mr_str.c $lib -o test-string 14 15 echo "Generating test-conf" 15 gcc -O2 -g -I../common -I../includetest-conf.c $lib -o test-conf16 gcc $OPT test-conf.c $lib -o test-conf 16 17 17 18 for f in test-conf test-string test-msg; do -
branches/stable/mondo/src/test/test-conf.c
r1054 r1064 15 15 int g_buffer_pid = 0; 16 16 17 main() {17 int main(void) { 18 18 int ret = 0; 19 19 int i = 0; -
branches/stable/mondo/src/test/test-string.c
r1054 r1064 6 6 */ 7 7 8 #define _GNU_SOURCE9 8 #include <string.h> 10 9 #include <stdlib.h> … … 14 13 #include "mr_mem.h" 15 14 16 main() {15 int main(void) { 17 16 const char delims[3] = ": \n"; 18 17
Note:
See TracChangeset
for help on using the changeset viewer.