diff options
Diffstat (limited to 'cpp/allTests.py')
-rwxr-xr-x | cpp/allTests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/allTests.py b/cpp/allTests.py index f7277069781..7ec6eb2814e 100755 --- a/cpp/allTests.py +++ b/cpp/allTests.py @@ -43,7 +43,7 @@ def runTests(tests, num = 0): print try: - os.system(os.path.join(dir, "run.py")) + execfile(os.path.join(dir, "run.py")) except SystemExit, (status,): if status: if(num > 0): @@ -84,8 +84,8 @@ tests = [ \ "IceStorm/federation2", \ "FreezeScript/dbmap", \ "FreezeScript/evictor", \ - "IcePack/simple", \ - "IcePack/deployer", \ +# "IcePack/simple", \ +# "IcePack/deployer", \ "Glacier/starter", \ ] |