diff options
author | Matthew Sackman <matthew@lshift.net> | 2009-08-17 17:02:01 +0100 |
---|---|---|
committer | Matthew Sackman <matthew@lshift.net> | 2009-08-17 17:02:01 +0100 |
commit | 459c876bea1c398a15835c0378224855ed9bdb00 (patch) | |
tree | bf59737c0dbac8a1f3367baa11cddb7f179af3cb | |
parent | cdd93bf6a4dfc4476bb9a6a898d1c9c4b2355207 (diff) | |
download | rabbitmq-server-459c876bea1c398a15835c0378224855ed9bdb00.tar.gz |
see bug21368 for details. bumping version required for specs, and making consistent requoting of STARTUP_SERVER_ARGS
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -20,10 +20,10 @@ PYTHON=python ifndef USE_SPECS # our type specs rely on features / bug fixes in dialyzer that are -# only available in R12B-3 upwards +# only available in R13B upwards (R13B is eshell 5.7.1) # # NB: the test assumes that version number will only contain single digits -USE_SPECS=$(shell if [ $$(erl -noshell -eval 'io:format(erlang:system_info(version)), halt().') \> "5.6.2" ]; then echo "true"; else echo "false"; fi) +USE_SPECS=$(shell if [ $$(erl -noshell -eval 'io:format(erlang:system_info(version)), halt().') \> "5.7.0" ]; then echo "true"; else echo "false"; fi) endif #other args: +native +"{hipe,[o3,verbose]}" -Ddebug=true +debug_info +no_strict_record_tests @@ -101,7 +101,8 @@ run-tests: all start-background-node: $(BASIC_SCRIPT_ENVIRONMENT_SETTINGS) \ RABBITMQ_NODE_ONLY=true \ - ./scripts/rabbitmq-server -detached; sleep 1 + RABBITMQ_SERVER_START_ARGS="$(RABBITMQ_SERVER_START_ARGS) -detached" \ + ./scripts/rabbitmq-server ; sleep 1 start-rabbit-on-node: all echo "rabbit:start()." | $(ERL_CALL) |