Commit edd689ef authored by Richard Levitte's avatar Richard Levitte
Browse files

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: default avatarTim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3247)
parent 19eaee74
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -59,7 +59,17 @@ static int test_tbl_standard()
 *
 ***/

#ifdef __VMS
# pragma names save
# pragma names as_is,shortened
#endif

#include "internal/asn1_int.h"

#ifdef __VMS
# pragma names restore
#endif

#include "../crypto/asn1/standard_methods.h"

static int test_standard_methods()
+10 −0
Original line number Diff line number Diff line
@@ -16,8 +16,18 @@
#include <openssl/opensslconf.h>
#include "test_main.h"
#include "testutil.h"

#ifdef __VMS
# pragma names save
# pragma names as_is,shortened
#endif

#include "internal/chacha.h"

#ifdef __VMS
# pragma names restore
#endif

const static unsigned int key[] = {
    0x03020100, 0x07060504, 0x0b0a0908, 0x0f0e0d0c,
    0x13121110, 0x17161514, 0x1b1a1918, 0x1f1e1d1c
+11 −0
Original line number Diff line number Diff line
@@ -14,7 +14,18 @@

#include "testutil.h"
#include "test_main_custom.h"

#ifdef __VMS
# pragma names save
# pragma names as_is,shortened
#endif

#include "internal/poly1305.h"

#ifdef __VMS
# pragma names restore
#endif

#include "../crypto/poly1305/poly1305_local.h"
#include "e_os.h"

+11 −0
Original line number Diff line number Diff line
@@ -15,7 +15,18 @@
#include <openssl/bio.h>
#include "testutil.h"
#include "test_main_custom.h"

#ifdef __VMS
# pragma names save
# pragma names as_is,shortened
#endif

#include "internal/siphash.h"

#ifdef __VMS
# pragma names restore
#endif

#include "../crypto/siphash/siphash_local.h"
#include "e_os.h"

+10 −0
Original line number Diff line number Diff line
@@ -9,9 +9,19 @@

#include <openssl/ssl.h>
#include <openssl/evp.h>

#ifdef __VMS
# pragma names save
# pragma names as_is,shortened
#endif

#include "../ssl/ssl_locl.h"
#include "../ssl/record/record_locl.h"

#ifdef __VMS
# pragma names restore
#endif

#include "testutil.h"
#include "test_main.h"

Loading