diff options
| author | Matthew Sackman <matthew@lshift.net> | 2010-04-26 18:50:45 +0100 |
|---|---|---|
| committer | Matthew Sackman <matthew@lshift.net> | 2010-04-26 18:50:45 +0100 |
| commit | 9be1b2ce233388e407cfe8ff51b196c831bef0a7 (patch) | |
| tree | 3e979e9b61ea1fa571a9b92b26965c34e1a6fa96 | |
| parent | b3bb364725f16585433cb9b5c8019a98a5a7a2b2 (diff) | |
| download | rabbitmq-server-git-9be1b2ce233388e407cfe8ff51b196c831bef0a7.tar.gz | |
Fixing up coverage - it would appear the coverage is *very* sensitive about how it gets started
| -rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -162,14 +162,13 @@ stop-node: # code coverage will be created for subdirectory "ebin" of COVER_DIR COVER_DIR=. -SECONDARY_NODENAME=hare start-cover: all echo "rabbit_misc:start_cover([\"rabbit\", \"hare\"])." | $(ERL_CALL) echo "rabbit_misc:enable_cover([\"$(COVER_DIR)\"])." | $(ERL_CALL) -start-secondary-cover: - echo "rabbit_misc:enable_cover_node(\"$(SECONDARY_NODENAME)\")." | $(ERL_CALL) +start-secondary-cover: all + echo "rabbit_misc:start_cover([\"hare\"])." | $(ERL_CALL) stop-cover: all echo "rabbit_misc:report_cover(), cover:stop()." | $(ERL_CALL) |
