Skip to content

Commit

Permalink
add eunit tests to top-level test Makefile
Browse files Browse the repository at this point in the history
Make sure eunit tests get executed when test/Makefile is used to run
all the tests.
  • Loading branch information
vinoski committed Oct 21, 2010
1 parent 31995fe commit 40fac1e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/Makefile
@@ -1,6 +1,6 @@
include support/include.mk

SUBDIRS = t1 t2
SUBDIRS = t1 t2 eunit

all: conf
@cd ibrowse/src; $(MAKE)
Expand All @@ -15,7 +15,7 @@ all: conf



clean:
clean:
@cd src; $(MAKE) clean
@cd ibrowse/src; $(MAKE) clean
@set -e ; \
Expand Down
5 changes: 3 additions & 2 deletions test/eunit/Makefile
@@ -1,10 +1,11 @@
include ../support/include.mk


#
all: multipart_post_parsing.beam

test:
$(ERL) -pa ../src $(YTOP)/ebin -noshell -s test run multipart_post_parsing

clean: tclean

# needed because target is called by top-level test/Makefile
conf:

0 comments on commit 40fac1e

Please sign in to comment.