summaryrefslogtreecommitdiff
path: root/cpp/allTests.py
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-08-21 20:09:46 +0000
committerMarc Laukien <marc@zeroc.com>2001-08-21 20:09:46 +0000
commitfbf799165cfb3e8c2595897acdeda0295e30310f (patch)
tree235dccc11a3ba95af28d175d5c33b0cd215cd33a /cpp/allTests.py
parentIce.PrintProcessId, run.py cleanup (diff)
downloadice-fbf799165cfb3e8c2595897acdeda0295e30310f.tar.bz2
ice-fbf799165cfb3e8c2595897acdeda0295e30310f.tar.xz
ice-fbf799165cfb3e8c2595897acdeda0295e30310f.zip
fixes
Diffstat (limited to 'cpp/allTests.py')
-rwxr-xr-xcpp/allTests.py19
1 files changed, 9 insertions, 10 deletions
diff --git a/cpp/allTests.py b/cpp/allTests.py
index 98748034cd6..33902177f9c 100755
--- a/cpp/allTests.py
+++ b/cpp/allTests.py
@@ -19,20 +19,19 @@ else:
for i in \
[ \
- ("Slice", "errorDetection"), \
- ("Ice", "operations"), \
- ("Ice", "exceptions"), \
- ("Ice", "inheritance"), \
- ("Ice", "faultTolerance"), \
- ("Ice", "locationForward"), \
- ("IcePack", "simple"), \
+ "Slice/errorDetection", \
+ "Ice/operations", \
+ "Ice/exceptions", \
+ "Ice/inheritance", \
+ "Ice/faultTolerance", \
+ "Ice/locationForward", \
+ "IcePack/simple", \
]:
- dir = os.path.join(toplevel, "test", *i)
+ dir = os.path.normpath(toplevel + "/test/" + i)
print
print "*** running tests in " + dir + ":"
print
- os.system("python " + os.path.join(dir, "run.py"))
-
+ os.system("python " + os.path.normpath(dir + "/run.py"))