Fake a successful run since we have no easy mechanism to skip this test
for this advanced condition.
#include "curlcheck.h"
#include "curl_get_line.h"
+#if !defined(CURL_DISABLE_COOKIES) || !defined(CURL_DISABLE_ALTSVC) || \
+ !defined(CURL_DISABLE_HSTS) || !defined(CURL_DISABLE_NETRC)
+
/* The test XML does not supply a way to write files without newlines
* so we write our own
*/
fprintf(stderr, "OK\n");
}
UNITTEST_STOP
+
+#else
+static CURLcode unit_setup(void)
+{
+ return CURLE_OK;
+}
+static void unit_stop(void)
+{
+}
+UNITTEST_START
+UNITTEST_STOP
+
+#endif