diff options
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(): |