diff options
author | Bernard Normier <bernard@zeroc.com> | 2003-04-10 21:14:03 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2003-04-10 21:14:03 +0000 |
commit | 3fec0a9d99c790da541db7a3192e5b55f00dd428 (patch) | |
tree | 2d9dd729784e0797420a783771a1e88a750eb9f1 /cpp/config/TestUtil.py | |
parent | adding statistics to evictor (diff) | |
download | ice-3fec0a9d99c790da541db7a3192e5b55f00dd428.tar.bz2 ice-3fec0a9d99c790da541db7a3192e5b55f00dd428.tar.xz ice-3fec0a9d99c790da541db7a3192e5b55f00dd428.zip |
Completed Sun port
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r-- | cpp/config/TestUtil.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py index cf05fdf93d4..d22ca9b32e7 100644 --- a/cpp/config/TestUtil.py +++ b/cpp/config/TestUtil.py @@ -65,6 +65,13 @@ def isWin32(): return 1 else: return 0 + +def isSolaris(): + + if sys.platform == "sunos5": + return 1 + else: + return 0 serverPids = [] def killServers(): |