diff options
author | Marc Laukien <marc@zeroc.com> | 2005-02-02 20:12:11 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2005-02-02 20:12:11 +0000 |
commit | a11266cc09b6a74405f0f7e0e667027cf88ec0c9 (patch) | |
tree | 30aa32476cfd2458dc1c3792d4a6491567e61f4a /cpp/test/FreezeScript/dbmap/run.py | |
parent | Added MemoryPool to IceUtil (diff) | |
download | ice-a11266cc09b6a74405f0f7e0e667027cf88ec0c9.tar.bz2 ice-a11266cc09b6a74405f0f7e0e667027cf88ec0c9.tar.xz ice-a11266cc09b6a74405f0f7e0e667027cf88ec0c9.zip |
minor
Diffstat (limited to 'cpp/test/FreezeScript/dbmap/run.py')
-rwxr-xr-x | cpp/test/FreezeScript/dbmap/run.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/test/FreezeScript/dbmap/run.py b/cpp/test/FreezeScript/dbmap/run.py index e8bca81e418..895425e9e1b 100755 --- a/cpp/test/FreezeScript/dbmap/run.py +++ b/cpp/test/FreezeScript/dbmap/run.py @@ -49,7 +49,7 @@ for file in os.listdir(os.path.join(directory, "fail")): regex2 = re.compile(r"^.*transf(ormdb|~1)(\.exe)?", re.IGNORECASE) -print "testing error detection... ", +print "testing error detection...", sys.stdout.flush() files.sort() @@ -84,7 +84,7 @@ for oldfile in files: print "ok" -print "creating test database... ", +print "creating test database...", sys.stdout.flush() makedb = os.path.join(directory, "makedb") + " " + directory @@ -98,7 +98,7 @@ testnew = os.path.join(directory, "TestNew.ice") initxml = os.path.join(directory, "init.xml") checkxml = os.path.join(directory, "check.xml") -print "initializing test database... ", +print "initializing test database...", sys.stdout.flush() command = transformdb + " --old " + testold + " --new " + testold + " -f " + initxml + " " + dbdir + " default.db " + init_dbdir @@ -107,7 +107,7 @@ if os.system(command) != 0: print "ok" -print "executing default transformations... ", +print "executing default transformations...", sys.stdout.flush() command = transformdb + " --old " + testold + " --new " + testnew + " --key int --value ::Test::S " + init_dbdir + " default.db " + check_dbdir @@ -116,7 +116,7 @@ stderr.readlines() print "ok" -print "validating database... ", +print "validating database...", sys.stdout.flush() command = transformdb + " --old " + testnew + " --new " + testnew + " -f " + checkxml + " " + check_dbdir + " default.db " + tmp_dbdir |