diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-03-05 17:14:15 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-03-05 17:14:15 +0000 |
commit | bc706c5d1637108101452161a2bb0d7063214982 (patch) | |
tree | a6197304cd8c4d4a0d4e5ddd0ff8bfbc5c8c35ff /cpp/config/TestUtil.py | |
parent | Fixed cvs merge conflict (diff) | |
download | ice-bc706c5d1637108101452161a2bb0d7063214982.tar.bz2 ice-bc706c5d1637108101452161a2bb0d7063214982.tar.xz ice-bc706c5d1637108101452161a2bb0d7063214982.zip |
Win9x fixes/additions
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r-- | cpp/config/TestUtil.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py index 1dde9b3e248..4d3bd807172 100644 --- a/cpp/config/TestUtil.py +++ b/cpp/config/TestUtil.py @@ -74,6 +74,15 @@ def isWin32(): else: return 0 +def isWin9x(): + + if isWin32(): + if os.environ.has_key("OS") and os.environ["OS"] == "Windows_NT": + return 0 + return 1 + else: + return 0 + def isSolaris(): if sys.platform == "sunos5": |