diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-10-25 15:16:27 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-10-25 15:16:27 +0000 |
commit | 6dc80813607e395e02a626be76804c939c38a172 (patch) | |
tree | b1aa762354be9b3a5c09d8fca79dd17b9bd49da5 /rb/config/TestUtil.py | |
parent | Do not enable compression by default (diff) | |
download | ice-6dc80813607e395e02a626be76804c939c38a172.tar.bz2 ice-6dc80813607e395e02a626be76804c939c38a172.tar.xz ice-6dc80813607e395e02a626be76804c939c38a172.zip |
bug 1495
Diffstat (limited to 'rb/config/TestUtil.py')
-rw-r--r-- | rb/config/TestUtil.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rb/config/TestUtil.py b/rb/config/TestUtil.py index 3f9c1f0bcd1..26903393cfe 100644 --- a/rb/config/TestUtil.py +++ b/rb/config/TestUtil.py @@ -307,6 +307,10 @@ for toplevel in [".", "..", "../..", "../../..", "../../../.."]: else: raise "can't find toplevel directory!" +if isWin32() and threadPerConnection: + print "Error: thread-per-connection is not currently supported on Windows." + sys.exit(1) + if isWin32(): if isCygwin(): os.environ["PATH"] = os.path.join(toplevel, "bin") + ":" + os.getenv("PATH", "") |