Unverified Commit 96bc59a6 authored by Doron Somech's avatar Doron Somech Committed by GitHub

Merge pull request #3708 from bluca/gnutls_pkg

Problem: test_wss_transport doesn't compile without DRAFT
parents 688213db 5bcb7dc5
......@@ -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