From: Richard Levitte Date: Fri, 18 Nov 2022 12:28:35 +0000 (+0100) Subject: Disable test/timing_load_creds.c on VMS X-Git-Tag: openssl-3.2.0-alpha1~1697 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81929ac49aa583b2347348953d8399ad775c6fd1;p=thirdparty%2Fopenssl.git Disable test/timing_load_creds.c on VMS Reviewed-by: Tomas Mraz Reviewed-by: Dmitry Belyavskiy (Merged from https://github.com/openssl/openssl/pull/19713) --- diff --git a/test/timing_load_creds.c b/test/timing_load_creds.c index 69536575179..b5b53737287 100644 --- a/test/timing_load_creds.c +++ b/test/timing_load_creds.c @@ -10,7 +10,7 @@ #include #include -#ifndef _WIN32 +#if !defined(_WIN32) && !defined(__VMS) # include # include # include @@ -192,7 +192,13 @@ int main(int ac, char **av) OPENSSL_free(contents); return EXIT_SUCCESS; #else +# if defined(_WIN32) fprintf(stderr, "This tool is not supported on Windows\n"); +# elif defined(__VMS) + fprintf(stderr, "This tool is not supported on VMS\n"); +# else + fprintf(stderr, "This tool is not supported on this platform\n"); +# endif exit(EXIT_FAILURE); #endif }