Commit 5bcb7dc5 authored by Luca Boccassi's avatar Luca Boccassi

Problem: test_wss_transport doesn't compile without DRAFT

Solution: skip it
parent 688213db
......@@ -33,6 +33,7 @@
SETUP_TEARDOWN_TESTCONTEXT
#ifdef ZMQ_WSS_CERT_PEM
const char *key =
"-----BEGIN PRIVATE KEY-----\n"
"MIIJRAIBADANBgkqhkiG9w0BAQEFAASCCS4wggkqAgEAAoICAQCrXKFPWrRqbdNo\n"
......@@ -148,3 +149,10 @@ int main ()
RUN_TEST (test_roundtrip);
return UNITY_END ();
}
#else
int main ()
{
printf ("WSS unavailable, skipping test\n");
return 77;
}
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment