summaryrefslogtreecommitdiffstats
path: root/test/cipher_overhead_test.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-09-13 17:02:53 +0200
committerRichard Levitte <levitte@openssl.org>2018-09-14 11:00:38 +0200
commit2935f6241c3a1f0dc6c7a6e0a95da4bc5f35439b (patch)
treeaa660ff3a80508a652f78bd6fde182d9ff162f69 /test/cipher_overhead_test.c
parentc40af30ec5b8ef30be870ad734fc8bf9caeeafc2 (diff)
VMS: turn on name mangling for all our programs
With the change to have separate object files by intent, VMS name mangling gets done differently. While we previously had that for libraries only, we must now turn that on generally for our programs, because some of them depend in internal libraries where mangled names are all that there is. Dynamic modules are still built with non-mangled names, which is good enough to show that it's possible to build with our public libraries using our public headers. Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/7208)
Diffstat (limited to 'test/cipher_overhead_test.c')
-rw-r--r--test/cipher_overhead_test.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/cipher_overhead_test.c b/test/cipher_overhead_test.c
index f8c6fd738e..8997fcc5d2 100644
--- a/test/cipher_overhead_test.c
+++ b/test/cipher_overhead_test.c
@@ -9,18 +9,8 @@
#include "internal/nelem.h"
#include "testutil.h"
-
-#ifdef __VMS
-# pragma names save
-# pragma names as_is,shortened
-#endif
-
#include "../ssl/ssl_locl.h"
-#ifdef __VMS
-# pragma names restore
-#endif
-
static int cipher_overhead(void)
{
int ret = 1, i, n = ssl3_num_ciphers();