diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-05-17 16:08:24 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-05-17 16:08:24 +0000 |
commit | 0f3e999deb4c0a27a17982cb7c036920aa175e57 (patch) | |
tree | 164b4915547df4e1d2b92505c624b156f9c74899 /cpp/config/TestUtil.py | |
parent | Updated to add isCygwin() and isWin32() functions to TestUtil.py, and use (diff) | |
download | ice-0f3e999deb4c0a27a17982cb7c036920aa175e57.tar.bz2 ice-0f3e999deb4c0a27a17982cb7c036920aa175e57.tar.xz ice-0f3e999deb4c0a27a17982cb7c036920aa175e57.zip |
Changed isWin32() to test isCygwin() too. Changed
test/IcePack/simple/run.py to use isWin32() only.
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r-- | cpp/config/TestUtil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py index bcd3602b603..fb9a3a78ad7 100644 --- a/cpp/config/TestUtil.py +++ b/cpp/config/TestUtil.py @@ -82,7 +82,7 @@ def isCygwin(): def isWin32(): - if sys.platform == "win32": + if sys.platform == "win32" or isCygwin(): return 1 else: return 0 |