diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-04-22 21:12:37 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-04-22 21:12:37 +0000 |
commit | a70e936cacb21eba2638f8a1d15c6359db0c10ff (patch) | |
tree | 0ea769fd8237c3d4c354f7445bc27ed68c67ce77 /cpp/test/FreezeScript/evictor/run.py | |
parent | bug fix for Ice::Identity definition (diff) | |
download | ice-a70e936cacb21eba2638f8a1d15c6359db0c10ff.tar.bz2 ice-a70e936cacb21eba2638f8a1d15c6359db0c10ff.tar.xz ice-a70e936cacb21eba2638f8a1d15c6359db0c10ff.zip |
fixes for new evictor database format
Diffstat (limited to 'cpp/test/FreezeScript/evictor/run.py')
-rwxr-xr-x | cpp/test/FreezeScript/evictor/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/FreezeScript/evictor/run.py b/cpp/test/FreezeScript/evictor/run.py index 6fa0fac5159..e86fbf7e251 100755 --- a/cpp/test/FreezeScript/evictor/run.py +++ b/cpp/test/FreezeScript/evictor/run.py @@ -57,7 +57,7 @@ checkxml = os.path.join(directory, "check.xml") print "executing evictor transformations... ", sys.stdout.flush() -command = transformdb + " -p --old " + testold + " --new " + testnew + " -f " + transformxml + " " + dbdir + " evictor.db " + check_dbdir +command = transformdb + " -e -p --old " + testold + " --new " + testnew + " -f " + transformxml + " " + dbdir + " evictor.db " + check_dbdir stdin, stdout, stderr = os.popen3(command) stderr.readlines() @@ -66,7 +66,7 @@ print "ok" print "validating database... ", sys.stdout.flush() -command = transformdb + " --old " + testnew + " --new " + testnew + " -f " + checkxml + " " + check_dbdir + " evictor.db " + tmp_dbdir +command = transformdb + " -e --old " + testnew + " --new " + testnew + " -f " + checkxml + " " + check_dbdir + " evictor.db " + tmp_dbdir os.system(command) print "ok" |