mirror of https://github.com/eclipse/paho.mqtt.c
Test updates
This commit is contained in:
parent
7ae71b966c
commit
fd74d05107
|
|
@ -1483,7 +1483,7 @@ int main(int argc, char** argv)
|
|||
|
||||
setenv("MQTT_C_CLIENT_TRACE", "ON", 1);
|
||||
//setenv("MQTT_C_CLIENT_TRACE_LEVEL", "ERROR", 1);
|
||||
setenv("MQTT_C_CLIENT_TRACE_LEVEL", "PROTOCOL", 1);
|
||||
//setenv("MQTT_C_CLIENT_TRACE_LEVEL", "PROTOCOL", 1);
|
||||
getopts(argc, argv);
|
||||
if (options.test_no == 0)
|
||||
{ /* run all the tests */
|
||||
|
|
|
|||
|
|
@ -65,6 +65,10 @@ void usage()
|
|||
struct Options
|
||||
{
|
||||
char* connection; /**< connection to system under test. */
|
||||
char mutual_auth_connection[100]; /**< connection to system under test. */
|
||||
char nocert_mutual_auth_connection[100];
|
||||
char server_auth_connection[100];
|
||||
char anon_connection[100];
|
||||
char* client_key_file;
|
||||
char* client_key_pass;
|
||||
char* server_key_file;
|
||||
|
|
|
|||
Loading…
Reference in New Issue