From d2118aeb17309efa3d5f2bec12b0c845e5b15a94 Mon Sep 17 00:00:00 2001 From: "Roger A. Light" Date: Sun, 3 Dec 2017 21:20:40 +0000 Subject: [PATCH] [636] Don't run TLS-PSK tests when disabled at compile time. Thanks to 'TBK'. Bug: https://github.com/eclipse/mosquitto/issues/636 --- ChangeLog.txt | 3 +++ test/broker/Makefile | 2 ++ 2 files changed, 5 insertions(+) diff --git a/ChangeLog.txt b/ChangeLog.txt index 741b53e8..7072ae3a 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -11,6 +11,9 @@ Broker: Client library: - Fix incorrect PSK key being used if it had leading zeroes. +Build: +- Don't run TLS-PSK tests if TLS-PSK disabled at compile time. Closes #636. + 1.4.14 - 20170710 ================= diff --git a/test/broker/Makefile b/test/broker/Makefile index 45f08b2e..a8a63a53 100644 --- a/test/broker/Makefile +++ b/test/broker/Makefile @@ -89,9 +89,11 @@ ifeq ($(WITH_TLS),yes) ./08-ssl-connect-identity.py ./08-ssl-connect-no-identity.py ./08-ssl-bridge.py +ifeq ($(WITH_TLS_PSK),yes) ./08-tls-psk-pub.py ./08-tls-psk-bridge.py endif +endif 09 : ./09-plugin-auth-unpwd-success.py