- Timestamp:
- 2017-04-06T20:29:23Z (8 years ago)
- Branches:
- master
- Children:
- 952e264
- Parents:
- b097945 (diff), c9e9c9c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/Makefile
rb097945 r0515063 21 21 check: $(test_objs) $(addprefix ../, $(main_objs)) ../protocols/protocols.o ../lib/lib.o 22 22 @echo '*' Linking $@ 23 @$(CC) $(CFLAGS) -o $@ $^ $(LFLAGS) $(EFLAGS)23 $(VERBOSE) $(CC) $(CFLAGS) -o $@ $^ $(LFLAGS) $(EFLAGS) 24 24 25 25 %.o: $(_SRCDIR_)%.c 26 26 @echo '*' Compiling $< 27 @$(CC) -c $(CFLAGS) $< -o $@27 $(VERBOSE) $(CC) -c $(CFLAGS) $< -o $@ -
tests/check.c
rb097945 r0515063 14 14 int sock[2]; 15 15 16 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNIX, sock) < 0) {16 if (socketpair(AF_UNIX, SOCK_STREAM, 0, sock) < 0) { 17 17 perror("socketpair"); 18 18 return FALSE;
Note: See TracChangeset
for help on using the changeset viewer.