diff options
Diffstat (limited to 'cpp/test/FreezeScript/dbmap/run.py')
-rwxr-xr-x | cpp/test/FreezeScript/dbmap/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/FreezeScript/dbmap/run.py b/cpp/test/FreezeScript/dbmap/run.py index 6ed553d5279..e8bca81e418 100755 --- a/cpp/test/FreezeScript/dbmap/run.py +++ b/cpp/test/FreezeScript/dbmap/run.py @@ -58,7 +58,7 @@ for oldfile in files: newfile = oldfile.replace("old", "new") if oldfile.find("19") == 0: - value = "::C" + value = "::Test::C" else: value = "int" @@ -110,7 +110,7 @@ print "ok" print "executing default transformations... ", sys.stdout.flush() -command = transformdb + " --old " + testold + " --new " + testnew + " --key int --value ::S " + init_dbdir + " default.db " + check_dbdir +command = transformdb + " --old " + testold + " --new " + testnew + " --key int --value ::Test::S " + init_dbdir + " default.db " + check_dbdir stdin, stdout, stderr = os.popen3(command) stderr.readlines() |