diff options
Diffstat (limited to 'java/test')
34 files changed, 34 insertions, 0 deletions
diff --git a/java/test/Freeze/complex/run.py b/java/test/Freeze/complex/run.py index 1acaebabeaf..bcb9ba442dd 100755 --- a/java/test/Freeze/complex/run.py +++ b/java/test/Freeze/complex/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Freeze", "complex") testdir = os.path.join(toplevel, "test", name) diff --git a/java/test/Freeze/dbmap/run.py b/java/test/Freeze/dbmap/run.py index 5a34b661b16..a304c10eac4 100755 --- a/java/test/Freeze/dbmap/run.py +++ b/java/test/Freeze/dbmap/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Freeze", "dbmap") testdir = os.path.join(toplevel, "test", name) diff --git a/java/test/Freeze/evictor/run.py b/java/test/Freeze/evictor/run.py index 980cdd01608..ad872902b86 100755 --- a/java/test/Freeze/evictor/run.py +++ b/java/test/Freeze/evictor/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Freeze", "evictor") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Freeze/oldevictor/run.py b/java/test/Freeze/oldevictor/run.py index cadcf329497..daa73970fd6 100755 --- a/java/test/Freeze/oldevictor/run.py +++ b/java/test/Freeze/oldevictor/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Freeze", "oldevictor") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Glacier2/attack/run.py b/java/test/Glacier2/attack/run.py index 1baae63b6f4..570571973f4 100755 --- a/java/test/Glacier2/attack/run.py +++ b/java/test/Glacier2/attack/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Glacier2/router/run.py b/java/test/Glacier2/router/run.py index 38ab73b270c..e6e033dcdac 100755 --- a/java/test/Glacier2/router/run.py +++ b/java/test/Glacier2/router/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/adapterDeactivation/run.py b/java/test/Ice/adapterDeactivation/run.py index 0291a1b4c45..2846cef184e 100755 --- a/java/test/Ice/adapterDeactivation/run.py +++ b/java/test/Ice/adapterDeactivation/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "adapterDeactivation") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/background/run.py b/java/test/Ice/background/run.py index 7b664f77c78..bc7d8cec1a6 100755 --- a/java/test/Ice/background/run.py +++ b/java/test/Ice/background/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "background") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/binding/run.py b/java/test/Ice/binding/run.py index 12a88ed2525..a6692f5fb4f 100755 --- a/java/test/Ice/binding/run.py +++ b/java/test/Ice/binding/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "binding") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/checksum/run.py b/java/test/Ice/checksum/run.py index 22693a8c689..b3506b44cfa 100755 --- a/java/test/Ice/checksum/run.py +++ b/java/test/Ice/checksum/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "checksum") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/custom/run.py b/java/test/Ice/custom/run.py index 1c022e04e7a..6f12a4ff810 100755 --- a/java/test/Ice/custom/run.py +++ b/java/test/Ice/custom/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "custom") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/exceptions/run.py b/java/test/Ice/exceptions/run.py index 0ab4bd2578b..e346442d91f 100755 --- a/java/test/Ice/exceptions/run.py +++ b/java/test/Ice/exceptions/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "exceptions") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/facets/run.py b/java/test/Ice/facets/run.py index cc0eab857ec..2e620209daf 100755 --- a/java/test/Ice/facets/run.py +++ b/java/test/Ice/facets/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "facets") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/faultTolerance/run.py b/java/test/Ice/faultTolerance/run.py index 3e655127b6b..dc00f62f71e 100755 --- a/java/test/Ice/faultTolerance/run.py +++ b/java/test/Ice/faultTolerance/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "faultTolerance") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/hold/run.py b/java/test/Ice/hold/run.py index cfc18b2de8e..3aad16bf8fe 100755 --- a/java/test/Ice/hold/run.py +++ b/java/test/Ice/hold/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "hold") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/inheritance/run.py b/java/test/Ice/inheritance/run.py index ef8381060b3..9ec103a4045 100755 --- a/java/test/Ice/inheritance/run.py +++ b/java/test/Ice/inheritance/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "inheritance") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/interceptor/run.py b/java/test/Ice/interceptor/run.py index 22ab302f1a6..be50948eebd 100755 --- a/java/test/Ice/interceptor/run.py +++ b/java/test/Ice/interceptor/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "interceptor") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/location/run.py b/java/test/Ice/location/run.py index 6301f79ea63..b2271b88770 100755 --- a/java/test/Ice/location/run.py +++ b/java/test/Ice/location/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "location") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/objects/run.py b/java/test/Ice/objects/run.py index 5c27fcdbd78..ec17ac79ecf 100755 --- a/java/test/Ice/objects/run.py +++ b/java/test/Ice/objects/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "objects") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/operations/run.py b/java/test/Ice/operations/run.py index 73f677ed565..84cccf81362 100755 --- a/java/test/Ice/operations/run.py +++ b/java/test/Ice/operations/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "operations") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/package/run.py b/java/test/Ice/package/run.py index 860d49e7d69..f72ab158050 100755 --- a/java/test/Ice/package/run.py +++ b/java/test/Ice/package/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "package") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/proxy/run.py b/java/test/Ice/proxy/run.py index bf88928add9..26c6aba7ca0 100755 --- a/java/test/Ice/proxy/run.py +++ b/java/test/Ice/proxy/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "proxy") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/retry/run.py b/java/test/Ice/retry/run.py index b98c962fdbc..245f4dd2f87 100755 --- a/java/test/Ice/retry/run.py +++ b/java/test/Ice/retry/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "retry") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/servantLocator/run.py b/java/test/Ice/servantLocator/run.py index 1b626736cb9..a337928b7e3 100755 --- a/java/test/Ice/servantLocator/run.py +++ b/java/test/Ice/servantLocator/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "servantLocator") nameAMD = os.path.join("Ice", "servantLocatorAMD") diff --git a/java/test/Ice/slicing/exceptions/run.py b/java/test/Ice/slicing/exceptions/run.py index d4fce29bad0..237610d7a45 100755 --- a/java/test/Ice/slicing/exceptions/run.py +++ b/java/test/Ice/slicing/exceptions/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "slicing", "exceptions") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/slicing/objects/run.py b/java/test/Ice/slicing/objects/run.py index 99ced240f7c..5b834e189ff 100755 --- a/java/test/Ice/slicing/objects/run.py +++ b/java/test/Ice/slicing/objects/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "slicing", "objects") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/stream/run.py b/java/test/Ice/stream/run.py index ce9b9f29b13..09be18dd69f 100755 --- a/java/test/Ice/stream/run.py +++ b/java/test/Ice/stream/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "stream") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Ice/threads/run.py b/java/test/Ice/threads/run.py index b685d48e201..aec5c5e965b 100755 --- a/java/test/Ice/threads/run.py +++ b/java/test/Ice/threads/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() if TestUtil.getIceSSLVersion() == "1.4": print "Detected IceSSL version that requires thread-per-connection, skipping test." diff --git a/java/test/Ice/timeout/run.py b/java/test/Ice/timeout/run.py index 8e8e1d643af..57729b5145a 100755 --- a/java/test/Ice/timeout/run.py +++ b/java/test/Ice/timeout/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Ice", "timeout") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/IceBox/configuration/run.py b/java/test/IceBox/configuration/run.py index a0768808eb3..5b921e2ba2b 100755 --- a/java/test/IceBox/configuration/run.py +++ b/java/test/IceBox/configuration/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() import IceGridAdmin name = os.path.join("IceBox", "configuration") diff --git a/java/test/IceGrid/simple/run.py b/java/test/IceGrid/simple/run.py index bf331c38d63..38b267460bc 100755 --- a/java/test/IceGrid/simple/run.py +++ b/java/test/IceGrid/simple/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() import IceGridAdmin testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/IceSSL/configuration/run.py b/java/test/IceSSL/configuration/run.py index 2bda29dd484..0c45d6d34d8 100755 --- a/java/test/IceSSL/configuration/run.py +++ b/java/test/IceSSL/configuration/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("IceSSL", "configuration") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/IceUtil/inputUtil/run.py b/java/test/IceUtil/inputUtil/run.py index 95450e92958..6e33ce61269 100755 --- a/java/test/IceUtil/inputUtil/run.py +++ b/java/test/IceUtil/inputUtil/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("IceUtil", "inputUtil") testdir = os.path.dirname(os.path.abspath(__file__)) diff --git a/java/test/Slice/keyword/run.py b/java/test/Slice/keyword/run.py index 19dc8fa1e00..95c29eed3c1 100755 --- a/java/test/Slice/keyword/run.py +++ b/java/test/Slice/keyword/run.py @@ -19,6 +19,7 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil +TestUtil.processCmdLine() name = os.path.join("Slice", "keyword") testdir = os.path.dirname(os.path.abspath(__file__)) |