summaryrefslogtreecommitdiff
path: root/py
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2008-02-14 17:58:48 +0800
committerMatthew Newhook <matthew@zeroc.com>2008-02-14 17:58:48 +0800
commitbea45989ce3dbca633e653da69747cdec12935f1 (patch)
tree1cffa6ea5027f07590a30def0629080bb816ba10 /py
parentbug 2680 - change base class to System.Exception in SL (diff)
downloadice-bea45989ce3dbca633e653da69747cdec12935f1.tar.bz2
ice-bea45989ce3dbca633e653da69747cdec12935f1.tar.xz
ice-bea45989ce3dbca633e653da69747cdec12935f1.zip
bug 2615
Diffstat (limited to 'py')
-rwxr-xr-xpy/test/Ice/adapterDeactivation/run.py1
-rwxr-xr-xpy/test/Ice/binding/run.py1
-rwxr-xr-xpy/test/Ice/blobject/run.py1
-rwxr-xr-xpy/test/Ice/checksum/run.py1
-rwxr-xr-xpy/test/Ice/custom/run.py1
-rwxr-xr-xpy/test/Ice/exceptions/run.py1
-rwxr-xr-xpy/test/Ice/facets/run.py1
-rwxr-xr-xpy/test/Ice/faultTolerance/run.py1
-rwxr-xr-xpy/test/Ice/inheritance/run.py1
-rwxr-xr-xpy/test/Ice/location/run.py1
-rwxr-xr-xpy/test/Ice/objects/run.py1
-rwxr-xr-xpy/test/Ice/operations/run.py1
-rwxr-xr-xpy/test/Ice/proxy/run.py1
-rwxr-xr-xpy/test/Ice/retry/run.py1
-rwxr-xr-xpy/test/Ice/servantLocator/run.py1
-rwxr-xr-xpy/test/Ice/slicing/exceptions/run.py1
-rwxr-xr-xpy/test/Ice/slicing/objects/run.py1
-rwxr-xr-xpy/test/Ice/timeout/run.py1
-rwxr-xr-xpy/test/Slice/keyword/run.py1
19 files changed, 19 insertions, 0 deletions
diff --git a/py/test/Ice/adapterDeactivation/run.py b/py/test/Ice/adapterDeactivation/run.py
index 00a823e7257..a094c546746 100755
--- a/py/test/Ice/adapterDeactivation/run.py
+++ b/py/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")
diff --git a/py/test/Ice/binding/run.py b/py/test/Ice/binding/run.py
index 26eae48f410..a0304394366 100755
--- a/py/test/Ice/binding/run.py
+++ b/py/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")
diff --git a/py/test/Ice/blobject/run.py b/py/test/Ice/blobject/run.py
index a28d328ea2b..0f23ed5db61 100755
--- a/py/test/Ice/blobject/run.py
+++ b/py/test/Ice/blobject/run.py
@@ -24,6 +24,7 @@ else:
sys.path.append(os.path.join(toplevel, "config"))
import TestUtil
+TestUtil.processCmdLine()
name = os.path.join("Ice", "blobject")
diff --git a/py/test/Ice/checksum/run.py b/py/test/Ice/checksum/run.py
index 7baaa591d14..65fc9c9621b 100755
--- a/py/test/Ice/checksum/run.py
+++ b/py/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")
diff --git a/py/test/Ice/custom/run.py b/py/test/Ice/custom/run.py
index 7725b1ad957..c22501a2c9b 100755
--- a/py/test/Ice/custom/run.py
+++ b/py/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")
diff --git a/py/test/Ice/exceptions/run.py b/py/test/Ice/exceptions/run.py
index 5a896c042e1..f5153ac8666 100755
--- a/py/test/Ice/exceptions/run.py
+++ b/py/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")
diff --git a/py/test/Ice/facets/run.py b/py/test/Ice/facets/run.py
index 6819bee9a27..b3afa6aeb5f 100755
--- a/py/test/Ice/facets/run.py
+++ b/py/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")
diff --git a/py/test/Ice/faultTolerance/run.py b/py/test/Ice/faultTolerance/run.py
index 786e9b8c175..010134d2046 100755
--- a/py/test/Ice/faultTolerance/run.py
+++ b/py/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.join(toplevel, "py", "test", name)
diff --git a/py/test/Ice/inheritance/run.py b/py/test/Ice/inheritance/run.py
index 4891102c8f9..7ecff0e5ae5 100755
--- a/py/test/Ice/inheritance/run.py
+++ b/py/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")
diff --git a/py/test/Ice/location/run.py b/py/test/Ice/location/run.py
index be23e30ec16..177ebe2fb41 100755
--- a/py/test/Ice/location/run.py
+++ b/py/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")
diff --git a/py/test/Ice/objects/run.py b/py/test/Ice/objects/run.py
index 6540f10fb9f..81b178ba4f4 100755
--- a/py/test/Ice/objects/run.py
+++ b/py/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")
diff --git a/py/test/Ice/operations/run.py b/py/test/Ice/operations/run.py
index f0c84d6e848..39ed6740919 100755
--- a/py/test/Ice/operations/run.py
+++ b/py/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")
diff --git a/py/test/Ice/proxy/run.py b/py/test/Ice/proxy/run.py
index 5aec8be5734..2aa17f08bd3 100755
--- a/py/test/Ice/proxy/run.py
+++ b/py/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")
diff --git a/py/test/Ice/retry/run.py b/py/test/Ice/retry/run.py
index 1872e2f2a0e..f0bc8d57120 100755
--- a/py/test/Ice/retry/run.py
+++ b/py/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")
diff --git a/py/test/Ice/servantLocator/run.py b/py/test/Ice/servantLocator/run.py
index 48e7fb04b77..d8d4a2e1c73 100755
--- a/py/test/Ice/servantLocator/run.py
+++ b/py/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")
diff --git a/py/test/Ice/slicing/exceptions/run.py b/py/test/Ice/slicing/exceptions/run.py
index ab63dcd9c6f..fd8cccc1533 100755
--- a/py/test/Ice/slicing/exceptions/run.py
+++ b/py/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")
diff --git a/py/test/Ice/slicing/objects/run.py b/py/test/Ice/slicing/objects/run.py
index 8f094a31773..65f973cda48 100755
--- a/py/test/Ice/slicing/objects/run.py
+++ b/py/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")
diff --git a/py/test/Ice/timeout/run.py b/py/test/Ice/timeout/run.py
index dde06549964..f04e73b903a 100755
--- a/py/test/Ice/timeout/run.py
+++ b/py/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")
diff --git a/py/test/Slice/keyword/run.py b/py/test/Slice/keyword/run.py
index a9decea1379..1e8824ce002 100755
--- a/py/test/Slice/keyword/run.py
+++ b/py/test/Slice/keyword/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__))