From edd689efbfa26a657a5d8310f43a4f11d29a460e Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 18 Apr 2017 23:30:57 +0200 Subject: VMS: Fix internals test programs 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: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/3247) --- test/wpackettest.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'test/wpackettest.c') diff --git a/test/wpackettest.c b/test/wpackettest.c index 2546ef3c6c..a37fab7a3b 100644 --- a/test/wpackettest.c +++ b/test/wpackettest.c @@ -9,7 +9,18 @@ #include #include + +#ifdef __VMS +# pragma names save +# pragma names as_is,shortened +#endif + #include "../ssl/packet_locl.h" + +#ifdef __VMS +# pragma names restore +#endif + #include "testutil.h" #include "test_main_custom.h" -- cgit v1.2.1