From b8a3f39b890304757058deb730c855b72c14947b Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 21 Feb 2018 10:15:16 +0100 Subject: [PATCH] VMS: Fix curve448 internal test program The internals test programs access header files that aren't guarded by the public __DECC_INCLUDE_PROLOGUE.H and __DECC_INCLUDE_EPILOGUE.H files, and therefore have no idea what the naming convention is. Therefore, we need to specify that explicitely in the internals test programs, since they aren't built with the same naming convention as the library they belong with. Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/5425) --- test/curve448_internal_test.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/test/curve448_internal_test.c b/test/curve448_internal_test.c index aac4818965..8c9b09da98 100644 --- a/test/curve448_internal_test.c +++ b/test/curve448_internal_test.c @@ -10,7 +10,18 @@ #include #include #include + +#ifdef __VMS +# pragma names save +# pragma names as_is,shortened +#endif + #include "curve448_lcl.h" + +#ifdef __VMS +# pragma names restore +#endif + #include "testutil.h" static unsigned int max = 1000; -- 2.34.1