diff options
author | Marc Laukien <marc@zeroc.com> | 2001-10-18 20:28:38 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-10-18 20:28:38 +0000 |
commit | ab9a6eac4a0f801ae9c3ef1becce488c73f051cd (patch) | |
tree | 14c847cd917683276e940b3c4b53f024f81abae3 /cpp/test/Ice/facets/run.py | |
parent | file SslConfig.h was initially added on branch asn_security_1. (diff) | |
download | ice-ab9a6eac4a0f801ae9c3ef1becce488c73f051cd.tar.bz2 ice-ab9a6eac4a0f801ae9c3ef1becce488c73f051cd.tar.xz ice-ab9a6eac4a0f801ae9c3ef1becce488c73f051cd.zip |
more facet stuff
Diffstat (limited to 'cpp/test/Ice/facets/run.py')
-rwxr-xr-x | cpp/test/Ice/facets/run.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/cpp/test/Ice/facets/run.py b/cpp/test/Ice/facets/run.py new file mode 100755 index 00000000000..b20ab69c1fb --- /dev/null +++ b/cpp/test/Ice/facets/run.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python +# ********************************************************************** +# +# Copyright (c) 2001 +# MutableRealms, Inc. +# Huntsville, AL, USA +# +# All Rights Reserved +# +# ********************************************************************** + +import os, sys + +for toplevel in [".", "..", "../..", "../../..", "../../../.."]: + if os.path.exists(os.path.normpath(toplevel + "/config/TestUtil.py")): + break +else: + raise "can't find toplevel directory!" + +sys.path.append(os.path.normpath(toplevel + "/config")) +import TestUtil + +name = "Ice/facets" +TestUtil.clientServerTest(toplevel, name) +TestUtil.collocatedTest(toplevel, name) +sys.exit(0) |