Changeset 6f5ab2a for skype/t/Makefile
- Timestamp:
- 2011-01-04T00:06:46Z (14 years ago)
- Branches:
- master
- Children:
- c12a5c8
- Parents:
- bb0775c (diff), dc3f9ef (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
skype/t/Makefile
rbb0775c r6f5ab2a 15 15 $(tests): % : %.test 16 16 @echo "--- Running test $@ ---"; \ 17 if ! ./livetest-bitlbee.sh $(BITLBEE) $(PORT) irssi/livetest-irssi.sh $< >$@.log; then \ 17 if [ -r "$(BITLBEE)" -a -x "$(BITLBEE)" ]; then \ 18 bitlbee_binary="$(BITLBEE)"; \ 19 else \ 20 bitlbee_basename=`basename $(BITLBEE)`; \ 21 bitlbee_binary=`which $$bitlbee_basename`; \ 22 fi; \ 23 if ! ./livetest-bitlbee.sh "$$bitlbee_binary" $(PORT) irssi/livetest-irssi.sh $< >$@.log; then \ 18 24 echo Test failed, log: ;\ 19 25 cat $@.log;\
Note: See TracChangeset
for help on using the changeset viewer.