diff options
author | Matthew Newhook <matthew@zeroc.com> | 2006-12-12 17:32:13 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2006-12-12 17:32:13 +0000 |
commit | 1e7b288ac943a88a8794601b06dc1a490dd981c1 (patch) | |
tree | 94dd306775ab9a0c46357baf229c6ea33d4d4a6e /py/config/TestUtil.py | |
parent | temp pause icon (diff) | |
download | ice-1e7b288ac943a88a8794601b06dc1a490dd981c1.tar.bz2 ice-1e7b288ac943a88a8794601b06dc1a490dd981c1.tar.xz ice-1e7b288ac943a88a8794601b06dc1a490dd981c1.zip |
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=1616. Fixed SSL bug with
test/Ice/operations.
Diffstat (limited to 'py/config/TestUtil.py')
-rw-r--r-- | py/config/TestUtil.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/py/config/TestUtil.py b/py/config/TestUtil.py index 361a2e3ed68..26ea39bb364 100644 --- a/py/config/TestUtil.py +++ b/py/config/TestUtil.py @@ -68,6 +68,8 @@ for o, a in opts: if o == "--debug": debug = 1 if o == "--protocol": + if a not in ( "tcp", "ssl"): + usage() protocol = a if o == "--compress": compress = 1 |