diff options
author | Marc Laukien <marc@zeroc.com> | 2001-08-21 20:09:46 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-08-21 20:09:46 +0000 |
commit | fbf799165cfb3e8c2595897acdeda0295e30310f (patch) | |
tree | 235dccc11a3ba95af28d175d5c33b0cd215cd33a /cpp | |
parent | Ice.PrintProcessId, run.py cleanup (diff) | |
download | ice-fbf799165cfb3e8c2595897acdeda0295e30310f.tar.bz2 ice-fbf799165cfb3e8c2595897acdeda0295e30310f.tar.xz ice-fbf799165cfb3e8c2595897acdeda0295e30310f.zip |
fixes
Diffstat (limited to 'cpp')
-rwxr-xr-x | cpp/allTests.py | 19 |
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")) |