diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-03-24 00:01:23 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-03-24 00:01:23 +0000 |
commit | 58c14525c6df583c95eb77abb797bc3ab618aa72 (patch) | |
tree | a075069a72f546c9b8e06f514254b443b3c8ad60 /cpp/test/IceSSL/certificateVerification/run.py | |
parent | Renaming file. (diff) | |
download | ice-58c14525c6df583c95eb77abb797bc3ab618aa72.tar.bz2 ice-58c14525c6df583c95eb77abb797bc3ab618aa72.tar.xz ice-58c14525c6df583c95eb77abb797bc3ab618aa72.zip |
Initial addition.
Diffstat (limited to 'cpp/test/IceSSL/certificateVerification/run.py')
-rwxr-xr-x | cpp/test/IceSSL/certificateVerification/run.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/cpp/test/IceSSL/certificateVerification/run.py b/cpp/test/IceSSL/certificateVerification/run.py new file mode 100755 index 00000000000..4ee41d77182 --- /dev/null +++ b/cpp/test/IceSSL/certificateVerification/run.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python +# ********************************************************************** +# +# Copyright (c) 2001 +# MutableRealms, Inc. +# Huntsville, AL, USA +# +# All Rights Reserved +# +# ********************************************************************** + +import os, sys + +for toplevel in [".", "..", "../..", "../../..", "../../../.."]: + toplevel = os.path.normpath(toplevel) + if os.path.exists(os.path.join(toplevel, "config", "TestUtil.py")): + break +else: + raise "can't find toplevel directory!" + +sys.path.append(os.path.join(toplevel, "config")) +import TestUtil + +name = os.path.join("IceSSL", "certificateVerification") + +TestUtil.clientServerTest(toplevel, name) +sys.exit(0) |