Skip to content

Commit

Permalink
Ensure test resources are copied during deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
pepone committed Jul 20, 2015
1 parent ece3aa0 commit ba4a6ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/Make.common.rules
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ all:: $(TARGETS)

clean:: $(CLEAN_TARGETS)

test_deploy: test_compile
test_deploy: test_compile test_resources
rsync -aczv --prune-empty-dirs \
--exclude="*.d" \
--exclude="*.h" \
Expand Down
6 changes: 5 additions & 1 deletion config/Make.test.application.rules
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,8 @@ include $(APPLICATION_RULES)


test_compile: $(LOCAL_BINDIR)/$(LOCAL_EXE)
test_clean: $(LOCAL_MODULE)_clean
test_clean: $(LOCAL_MODULE)_clean

ifneq ($(LOCAL_RESOURCES),)
test_resources: $(LOCAL_RESOURCES)
endif

0 comments on commit ba4a6ae

Please sign in to comment.