-updated liquidsoap scripts + library to be liquidsoap-beta2 compliant

This commit is contained in:
martin 2011-07-06 11:14:51 -04:00
parent 022b013dd2
commit 3dc1380fab
24 changed files with 593 additions and 192 deletions

View file

@ -0,0 +1,16 @@
DISTFILES = Makefile $(wildcard *.liq) $(wildcard *.pl)
top_srcdir = ../..
include $(top_srcdir)/Makefile.rules
test:
@for i in $(wildcard *.liq) ; do \
echo -n "$$i... " ; $(top_srcdir)/src/liquidsoap -q - < ./$$i | head -n 1 ; \
done
@echo -n "type_errors.pl... " ; \
if (./type_errors.pl > /dev/null 2> /dev/null) ; then \
echo "TEST PASSED (check manually the prettiness of messages)" ; \
else \
echo "TEST FAILED" ; \
fi