diff options
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": |