Skip to content

Commit

Permalink
Forcing "make test".
Browse files Browse the repository at this point in the history
  • Loading branch information
schwink committed Aug 9, 2010
1 parent 5ede796 commit d8bd829
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 4 additions & 2 deletions server/kanaloa/Makefile
Expand Up @@ -5,7 +5,7 @@ DEST_EBIN = $(DEST)/ebin
DEST_INCLUDE = $(DEST)/include
DEST_DOC=$(DESTDIR)/usr/share/doc/$(NAME)/$(VERSION)/html

all: ebin/
all: ebin/ tbin/
(cd src;$(MAKE) all)
(cd test;$(MAKE) all)

Expand All @@ -16,7 +16,9 @@ hipe: ebin/
doc:
(cd src;$(MAKE) edoc)

test: tbin/
force:

test: force
(cd src;$(MAKE) test)

clean:
Expand Down
3 changes: 1 addition & 2 deletions server/kanaloa/src/Makefile
Expand Up @@ -18,8 +18,7 @@ edoc:
-eval "edoc:application($(APPLICATION), \".\", [$(DOC_OPTS)])" \
-s init stop

test: $(EBIN_FILES)
mkdir -p $(TEST_DIR);
test: $(EBIN_FILES) $(TBIN_FILES)
@../support/run_tests.escript $(EBIN_DIR) $(TBIN_DIR) | tee $(TEST_DIR)/test.log

$(TEST_PLT):
Expand Down

0 comments on commit d8bd829

Please sign in to comment.