summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2002-09-05 22:45:01 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2002-09-05 22:45:01 +0000
commitbfd6188e26175478899b35f39b00ee6c3e967efe (patch)
tree06698a7728cb50df3379d5e794dafe40555018e7
parentbf89ad4321ebfd31b01ca2f89e6b00d8eeb96797 (diff)
import openssl-0.9.7-beta3
-rw-r--r--lib/libcrypto/util/dirname.pl18
-rw-r--r--lib/libssl/test/dummytest.c47
2 files changed, 65 insertions, 0 deletions
diff --git a/lib/libcrypto/util/dirname.pl b/lib/libcrypto/util/dirname.pl
new file mode 100644
index 00000000000..d7a66d96acc
--- /dev/null
+++ b/lib/libcrypto/util/dirname.pl
@@ -0,0 +1,18 @@
+#!/usr/local/bin/perl
+
+if ($#ARGV < 0) {
+ die "dirname.pl: too few arguments\n";
+} elsif ($#ARGV > 0) {
+ die "dirname.pl: too many arguments\n";
+}
+
+my $d = $ARGV[0];
+
+if ($d =~ m|.*/.*|) {
+ $d =~ s|/[^/]*$||;
+} else {
+ $d = ".";
+}
+
+print $d,"\n";
+exit(0);
diff --git a/lib/libssl/test/dummytest.c b/lib/libssl/test/dummytest.c
new file mode 100644
index 00000000000..f98f003ef98
--- /dev/null
+++ b/lib/libssl/test/dummytest.c
@@ -0,0 +1,47 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <ctype.h>
+#include <openssl/e_os2.h>
+#include <openssl/buffer.h>
+#include <openssl/crypto.h>
+
+int main(int argc, char *argv[])
+ {
+ char *p, *q, *program;
+
+ p = strrchr(argv[0], '/');
+ if (!p) p = strrchr(argv[0], '\\');
+#ifdef OPENSSL_SYS_VMS
+ if (!p) p = strrchr(argv[0], ']');
+ if (p) q = strrchr(p, '>');
+ if (q) p = q;
+ if (!p) p = strrchr(argv[0], ':');
+ q = 0;
+#endif
+ if (p) p++;
+ if (!p) p = argv[0];
+ if (p) q = strchr(p, '.');
+ if (p && !q) q = p + strlen(p);
+
+ if (!p)
+ program = BUF_strdup("(unknown)");
+ else
+ {
+ program = OPENSSL_malloc((q - p) + 1);
+ strncpy(program, p, q - p);
+ program[q - p] = '\0';
+ }
+
+ for(p = program; *p; p++)
+ if (islower(*p)) *p = toupper(*p);
+
+ q = strstr(program, "TEST");
+ if (q > p && q[-1] == '_') q--;
+ *q = '\0';
+
+ printf("No %s support\n", program);
+
+ OPENSSL_free(program);
+ return(0);
+ }