mosquitto/test/broker/Makefile
Karl Palsson c6aac741c2 broker: support byte based queueing
Limiting queued message depth purely based on message count is hard to
control for memory constrained devices.  The size of messages can vary
wildly, from a few bytes, to a few kilobytes.  Support a new
max_queued_bytes option, and drop packets when the first limit is
reached.  Option defaults to 0 (disabled) by default.
Support also a max_inflight_bytes variable, with similar behaviour.

Fixes (partof) https://github.com/eclipse/mosquitto/issues/100

This pulls up some helper routines for calculating whether to allow
inflight or queuing, resolving some inconsistences in connection
resumption.

Signed-off-by: Karl Palsson <karlp@etactica.com>
2016-09-09 17:27:39 +00:00

100 lines
2.0 KiB
Makefile

include ../../config.mk
.PHONY: all clean test
.NOTPARALLEL:
all :
clean :
-rm -f *.vglog
$(MAKE) -C c clean
test-compile :
$(MAKE) -C c
test : test-compile 01 02 03 04 05 06 07 08 09 10
01 :
./01-connect-success.py
./01-connect-invalid-protonum.py
./01-connect-invalid-id-0.py
./01-connect-invalid-id-0-311.py
./01-connect-invalid-id-missing.py
./01-connect-anon-denied.py
./01-connect-uname-no-password-denied.py
./01-connect-uname-password-denied.py
ifeq ($(WITH_TLS),yes)
./01-connect-uname-password-success.py
else
./01-connect-uname-password-success-no-tls.py
endif
02 :
./02-subscribe-qos0.py
./02-subscribe-qos1.py
./02-subscribe-qos2.py
./02-subpub-qos0.py
./02-subpub-qos1.py
./02-subpub-qos2.py
./02-unsubscribe-qos0.py
./02-unsubscribe-qos1.py
./02-unsubscribe-qos2.py
03 :
./03-publish-qos1.py
./03-publish-qos2.py
./03-publish-b2c-disconnect-qos1.py
./03-publish-c2b-disconnect-qos2.py
./03-publish-b2c-disconnect-qos2.py
./03-pattern-matching.py
./03-publish-qos1-queued-bytes.py
04 :
./04-retain-qos0.py
./04-retain-qos0-fresh.py
./04-retain-qos0-repeated.py
./04-retain-qos1-qos0.py
./04-retain-qos0-clear.py
05 :
./05-clean-session-qos1.py
06 :
./06-bridge-reconnect-local-out.py
./06-bridge-br2b-disconnect-qos1.py
./06-bridge-br2b-disconnect-qos2.py
./06-bridge-b2br-disconnect-qos1.py
./06-bridge-b2br-disconnect-qos2.py
./06-bridge-fail-persist-resend-qos1.py
./06-bridge-fail-persist-resend-qos2.py
07 :
./07-will-qos0.py
./07-will-null.py
./07-will-null-topic.py
08 :
ifeq ($(WITH_TLS),yes)
./08-ssl-connect-no-auth.py
./08-ssl-connect-no-auth-wrong-ca.py
./08-ssl-connect-cert-auth.py
./08-ssl-connect-cert-auth-without.py
./08-ssl-connect-cert-auth-expired.py
./08-ssl-connect-cert-auth-revoked.py
./08-ssl-connect-cert-auth-crl.py
./08-ssl-connect-identity.py
./08-ssl-connect-no-identity.py
./08-ssl-bridge.py
./08-tls-psk-pub.py
./08-tls-psk-bridge.py
endif
09 :
./09-plugin-auth-unpwd-success.py
./09-plugin-auth-unpwd-fail.py
10 :
./10-listener-mount-point.py