diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-11-06 16:58:38 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-11-06 16:58:38 +0100 |
commit | 948c18ac0abd7ff12d29da584ad7b21822945a2f (patch) | |
tree | 3501e0c45ee39020ee537cbd6413db0659d04141 /cpp/test/FreezeScript/dbmap/run.py | |
parent | 3.5b TP installer build (diff) | |
download | ice-948c18ac0abd7ff12d29da584ad7b21822945a2f.tar.bz2 ice-948c18ac0abd7ff12d29da584ad7b21822945a2f.tar.xz ice-948c18ac0abd7ff12d29da584ad7b21822945a2f.zip |
Lots of minor test and build fixes.
- Added --client-home option to allow running tests against clients
from another source distribution.
- Fixed bogus identation in some Makefiles
- Fixed installation of Ice for Java on platforms where the GUI isn't built.
- Added more cross language tests.
- Fixed issues with running the tests against a binary distribution.
Diffstat (limited to 'cpp/test/FreezeScript/dbmap/run.py')
-rwxr-xr-x | cpp/test/FreezeScript/dbmap/run.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/FreezeScript/dbmap/run.py b/cpp/test/FreezeScript/dbmap/run.py index 34cfbeaa6f3..b99ed7b78d7 100755 --- a/cpp/test/FreezeScript/dbmap/run.py +++ b/cpp/test/FreezeScript/dbmap/run.py @@ -124,8 +124,8 @@ print("ok") sys.stdout.write("executing default transformations... ") sys.stdout.flush() -command = '"' + transformdb + '" --old "' + testold + '" --new "' + testnew + '" --key int --value ::Test::S "' + init_dbdir + \ - '" default.db "' + check_dbdir + '" ' +command = '"' + transformdb + '" --old "' + testold + '" --new "' + testnew + '" --key int --value ::Test::S "' + \ + init_dbdir + '" default.db "' + check_dbdir + '" ' TestUtil.spawn(command).waitTestSuccess() @@ -134,8 +134,8 @@ print("ok") sys.stdout.write("validating database... ") sys.stdout.flush() -command = '"' + transformdb + '" --old "' + testnew + '" --new "' + testnew + '" -f "' + checkxml + '" "' + check_dbdir + \ - '" default.db "' + tmp_dbdir + '" ' +command = '"' + transformdb + '" --old "' + testnew + '" --new "' + testnew + '" -f "' + checkxml + '" "' + \ + check_dbdir + '" default.db "' + tmp_dbdir + '" ' TestUtil.spawn(command).waitTestSuccess() |