diff options
Diffstat (limited to 'cpp/test/IceSSL/configuration/run.py')
-rwxr-xr-x | cpp/test/IceSSL/configuration/run.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/test/IceSSL/configuration/run.py b/cpp/test/IceSSL/configuration/run.py index 9063aa37ad5..848756709b9 100755 --- a/cpp/test/IceSSL/configuration/run.py +++ b/cpp/test/IceSSL/configuration/run.py @@ -21,6 +21,10 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +if TestUtil.protocol != "ssl": + print "This test may only be run with SSL enabled." + sys.exit(0) + testdir = os.path.join(toplevel,"test", "IceSSL", "configuration") client = os.path.join(testdir, "configuration") |