diff options
author | Brent Eagles <brent@zeroc.com> | 2006-09-13 11:05:43 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2006-09-13 11:05:43 +0000 |
commit | d05310f424bbfb80c53b8697663f949f96c9a261 (patch) | |
tree | fa6988b1319ea7d6d0fd1b7407cb2763923de6ca /cpp/allTests.py | |
parent | Fixes (diff) | |
download | ice-d05310f424bbfb80c53b8697663f949f96c9a261.tar.bz2 ice-d05310f424bbfb80c53b8697663f949f96c9a261.tar.xz ice-d05310f424bbfb80c53b8697663f949f96c9a261.zip |
- Updating Ice and library verison to 3.2.
- Adding memory pool implementation. Enabled by default.
- Added disablePool option to test suite to run tests without the pool.
- Added Ice.MemoryPool and Ice.HighWaterMark properties.
Diffstat (limited to 'cpp/allTests.py')
-rwxr-xr-x | cpp/allTests.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/allTests.py b/cpp/allTests.py index 0971083a0b1..85717c5ef84 100755 --- a/cpp/allTests.py +++ b/cpp/allTests.py @@ -117,10 +117,10 @@ tests = [ \ "IceGrid/allocation", \ "Glacier2/router", \ "Glacier2/attack", \ - "Glacier2/addressFilter", \ "Glacier2/sessionControl", \ "Glacier2/ssl", \ "Glacier2/filters", \ + "Glacier2/addressFilter", \ ] # @@ -132,12 +132,12 @@ if isCygwin() == 0: ] def usage(): - print "usage: " + sys.argv[0] + " -l -r <regex> -R <regex> --debug --protocol protocol --compress --host host --threadPerConnection" + print "usage: " + sys.argv[0] + " -l -r <regex> -R <regex> --debug --protocol protocol --compress --host host --threadPerConnection --disablePool" sys.exit(2) try: opts, args = getopt.getopt(sys.argv[1:], "lr:R:", \ - ["debug", "protocol=", "compress", "host=", "threadPerConnection"]) + ["debug", "protocol=", "compress", "host=", "threadPerConnection", "disablePool"]) except getopt.GetoptError: usage() @@ -159,7 +159,7 @@ for o, a in opts: tests = filter(rematch, tests) if o in ( "--protocol", "--host" ): args += " " + o + " " + a - if o in ( "--debug", "--compress", "--threadPerConnection" ): + if o in ( "--debug", "--compress", "--threadPerConnection", "--disablePool" ): args += " " + o if loop: |